提交 | 用户 | age
|
928153
|
1 |
package com.hz.his.dto.coupon; |
F |
2 |
|
|
3 |
import lombok.Data; |
|
4 |
|
251298
|
5 |
import java.util.List; |
F |
6 |
|
928153
|
7 |
/** |
F |
8 |
* 优惠券发送参数 |
|
9 |
* @author fwq |
|
10 |
*/ |
|
11 |
@Data |
|
12 |
public class CouponSendItemDto { |
|
13 |
/**发放批次-必填*/ |
|
14 |
private String recordName; |
|
15 |
/**优惠券标识-必填*/ |
|
16 |
private String couponId; |
|
17 |
/**发放数量-必填*/ |
|
18 |
private Integer num; |
|
19 |
|
b1af55
|
20 |
/**生日券传:开始时间,年月日时分秒,不填默认一个月*/ |
928153
|
21 |
private String startTime; |
b1af55
|
22 |
/**生日券传:结束时间,年月日时分秒,不填默认一个月*/ |
928153
|
23 |
private String endTime; |
8d40de
|
24 |
/**归属成本部门 -非必填 */ |
F |
25 |
private String ascrCostDeptId; |
9dff43
|
26 |
/**归属成本部门名称 -非必填 */ |
F |
27 |
private String ascrCostDeptName; |
8d40de
|
28 |
/**成本部门名称 -非必填*/ |
F |
29 |
private String costDeptName; |
|
30 |
|
d3af5b
|
31 |
|
4288fa
|
32 |
/**发放原因 -非必填 相当于 促成交 客诉 打板 类型*/ |
R |
33 |
private String sendReason; |
|
34 |
/**发放门店 -非必填 */ |
d3af5b
|
35 |
private String sendShopId; |
4288fa
|
36 |
/**发放门店名称*/ |
R |
37 |
private String sendShopName; |
47761c
|
38 |
/** 打板券有无肖像权协议 0=否 1=是*/ |
R |
39 |
private Integer isPortrait; |
928153
|
40 |
} |