提交 | 用户 | age
|
f5bce1
|
1 |
package com.hz.his.dto.coupon; |
7c680b
|
2 |
|
C |
3 |
import com.hz.his.dto.PageDto; |
|
4 |
import lombok.Data; |
90f64f
|
5 |
|
A |
6 |
import java.math.BigDecimal; |
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; |
90f64f
|
21 |
/**操作人类型*/ |
A |
22 |
private Integer operatorType; |
|
23 |
/**用户标识*/ |
|
24 |
private String userId; |
f148ba
|
25 |
/**活动标识*/ |
W |
26 |
private String groupBuyId; |
ddd881
|
27 |
/**发送记录*/ |
F |
28 |
private CouponRecordDto couponReleaseRecordItem; |
|
29 |
/**用户详情*/ |
|
30 |
private List<UserArrDto> userArr; |
|
31 |
|
f148ba
|
32 |
private List<CouponItemDto> itemDtoList; |
ddd881
|
33 |
|
7c680b
|
34 |
/**修改时间*/ |
C |
35 |
private String updateTime; |
|
36 |
|
e173da
|
37 |
/**优惠券标识*/ |
F |
38 |
private String couponId; |
354415
|
39 |
/**发放优惠券参数-订单标识*/ |
Z |
40 |
private String orderId; |
|
41 |
/*用户优惠券*/ |
|
42 |
private String couponNumberId; |
e173da
|
43 |
|
90f64f
|
44 |
//开单结账一起执行校验优惠券接口使用参数 |
A |
45 |
/** 优惠券商品JSON数组字符 */ |
|
46 |
private String couponGoodsArr; |
|
47 |
/** 订单应付金额 */ |
|
48 |
private BigDecimal shouldTotal; |
7c680b
|
49 |
} |