chenjiahe
2023-11-13 99ffdf25456cd2d9bb90d275d00257cdd8cfc879
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package com.hz.his.dto.coupon;
 
import com.hz.his.dto.PageDto;
import lombok.Data;
import org.dom4j.tree.BaseElement;
 
import java.math.BigDecimal;
import java.util.List;
 
/**
 * 优惠券发送参数
 * @author fwq
 */
@Data
public class CouponDto extends PageDto {
    /**来源编码,商户自定义服务来源标识*/
    private String appIdCode;
    /**操作人标识*/
    private String operatorId;
    /**操作人名称*/
    private String operatorName;
    /**操作人类型*/
    private Integer operatorType;
    /**用户标识*/
    private String userId;
    /**活动标识*/
    private String groupBuyId;
    private List<String> idList;
    /**发送记录*/
    private CouponRecordDto couponReleaseRecordItem;
    /**用户详情*/
    private List<UserArrDto> userArr;
 
    private List<CouponItemDto> itemDtoList;
 
    /**修改时间*/
    private String updateTime;
 
    /**优惠券标识*/
    private String couponId;
    /**发放优惠券参数-订单标识*/
    private String orderId;
    /*用户优惠券*/
    private String couponNumberId;
 
    //开单结账一起执行校验优惠券接口使用参数
    /** 优惠券商品JSON数组字符 */
    private String couponGoodsArr;
    /** 订单应付金额 */
    private BigDecimal shouldTotal;
 
    /** 是否是营销助手申请 0=否 1=是*/
    private Integer isMarketApply = 0;
    /**是否查询关联信息*/
    private Integer isSelectGoods = 1;
    /**查询生日券*/
    private Integer isSelectBirthday;
    /**优惠券类型*/
    private String couponType;
 
    /** 优惠券分类ID*/
    private String couponTypeId;
    /** 基础分类-优惠券*/
    private String type;
 
    /** 优惠券ID*/
    private List<String> couponIdList;
}