提交 | 用户 | age
|
f5bce1
|
1 |
package com.hz.his.dto.coupon; |
7c680b
|
2 |
|
ddd881
|
3 |
|
F |
4 |
|
7c680b
|
5 |
import com.hz.his.dto.PageDto; |
C |
6 |
import lombok.Data; |
ddd881
|
7 |
import java.util.List; |
7c680b
|
8 |
|
C |
9 |
/** |
ddd881
|
10 |
* 优惠券发送参数 |
7c680b
|
11 |
* @author fwq |
ddd881
|
12 |
*/ |
7c680b
|
13 |
@Data |
f5bce1
|
14 |
public class CouponDto extends PageDto { |
c6f30e
|
15 |
/**来源编码,商户自定义服务来源标识*/ |
F |
16 |
private String appIdCode; |
ddd881
|
17 |
/**操作人标识*/ |
F |
18 |
private String operatorId; |
|
19 |
/**操作人名称*/ |
|
20 |
private String operatorName; |
f148ba
|
21 |
/**活动标识*/ |
W |
22 |
private String groupBuyId; |
313f70
|
23 |
private String id; |
ddd881
|
24 |
/**发送记录*/ |
F |
25 |
private CouponRecordDto couponReleaseRecordItem; |
|
26 |
/**用户详情*/ |
|
27 |
private List<UserArrDto> userArr; |
|
28 |
|
f148ba
|
29 |
private List<CouponItemDto> itemDtoList; |
ddd881
|
30 |
|
7c680b
|
31 |
/**修改时间*/ |
C |
32 |
private String updateTime; |
|
33 |
|
e173da
|
34 |
/**优惠券标识*/ |
F |
35 |
private String couponId; |
354415
|
36 |
/**发放优惠券参数-订单标识*/ |
Z |
37 |
private String orderId; |
|
38 |
/*用户优惠券*/ |
|
39 |
private String couponNumberId; |
e173da
|
40 |
|
7c680b
|
41 |
} |