wangrenhuang
2023-06-13 25a075e3b12a7cb26886e19b405c4ad7df05e629
提交 | 用户 | age
3ce49a 1 package com.hz.phis.dt.coupon;
F 2
3 import com.hz.phis.dt.limit.LimitDt;
4 import lombok.Data;
5
6 import java.math.BigDecimal;
7 import java.util.List;
8
9 /**
10  * 同步优惠券列表实体
11  *
12  * @author fwq
13  */
14 @Data
15 public class CouponListDt {
16     /**标识*/
17     private String id;
18     /**优惠券标题*/
19     private String title;
20     /**描述*/
21     private String describeInfo;
22     /**是否上架*/
23     private Integer isUp;
24     /**使用须知*/
25     private String useKnowInfo;
26     /**注意事项*/
27     private String carefulInfo;
28     /**使用类型*/
29     private Integer useType;
30     /**项目使用类型(0指定项目,1项目通用)*/
31     private Integer useProjectType;
32     /**商品使用类型(2指定商品,3商品通用)*/
33     private Integer useGoodsType;
34     /**是否展示*/
35     private Integer isShow;
36     /**展示开始时间*/
37     private String startShowTime;
38     /**展示结束时间*/
39     private String endShowTime;
40     /**条件类型*/
41     private Integer conditionType;
42     /**满足金额(元)(满足该金额便可用)*/
43     private BigDecimal amountSatisfied;
44     /**满足件数(满足该商品件数便可用,暂时预留)*/
45     private Integer itemNum;
46     /**优惠类型*/
47     private Integer type;
48     /**优惠金额(元)*/
49     private BigDecimal discountAmount;
50     /**优惠折扣*/
51     private Double discountNum;
52     /**计时类型*/
53     private Integer timeType ;
54     /**叠加时长(年)*/
55     public Integer yearNum ;
56     /**叠加时长(月)*/
57     public Integer monthNum ;
58     /**叠加时长(日)*/
59     public Integer dayNum ;
60     /**叠加时长(小时)*/
61     public Integer hoursNum ;
62     /**有效开始时间*/
63     private String startTime;
64     /**有效结束时间*/
65     private String endTime;
66     /**是否能使用增值金*/
67     private Integer isIncrement;
68     /**排序*/
69     private Integer sortNum;
70     /**phis标识*/
71     private String hisId;
72     /**删除*/
73     private Integer isDel;
74     /**原价*/
75     private BigDecimal originalPrice;
76     /**现价*/
77     private BigDecimal price;
78     /**指定*/
79     private List<CouponAppointDt> appointList;
80     /**限制信息*/
81     private LimitDt limitDt;
82 }