2021与蓝度共同重构项目,服务端
MercuryZ
2022-03-31 ef270bd1855b5ce3f398c5df024840a498e33a8f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.sandu.ximon.admin.dto.wxquery;
 
import lombok.Data;
 
/**
 * @Author liuhaonan
 * @Date 2022/3/29
 * @Version 1.0
 */
@Data
public class promotion_detail {
    private String coupon_id;//券ID
    private String name;//优惠名称
    private String scope;//优惠范围
    private String type;//优惠类型 CASH:充值  NOCASH:预充值
    private Integer amount; //优惠券面额
    private String stock_id;//活动ID
    private Integer  wechatpay_contribute;//微信出资
    private Integer merchant_contribute;//商户出资
    private Integer other_contribute;//其他出资
    private String     currency;//优惠币种
 
}