提交 | 用户 | 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; |
d4cecc
|
21 |
/**操作人类型*/ |
F |
22 |
private Integer operatorType; |
f148ba
|
23 |
/**活动标识*/ |
W |
24 |
private String groupBuyId; |
313f70
|
25 |
private String id; |
ddd881
|
26 |
/**发送记录*/ |
F |
27 |
private CouponRecordDto couponReleaseRecordItem; |
|
28 |
/**用户详情*/ |
|
29 |
private List<UserArrDto> userArr; |
|
30 |
|
f148ba
|
31 |
private List<CouponItemDto> itemDtoList; |
ddd881
|
32 |
|
7c680b
|
33 |
/**修改时间*/ |
C |
34 |
private String updateTime; |
|
35 |
|
e173da
|
36 |
/**优惠券标识*/ |
F |
37 |
private String couponId; |
354415
|
38 |
/**发放优惠券参数-订单标识*/ |
Z |
39 |
private String orderId; |
|
40 |
/*用户优惠券*/ |
|
41 |
private String couponNumberId; |
e173da
|
42 |
|
d4cecc
|
43 |
//-------------------------------------------------------------------- |
F |
44 |
//对应phis表CouponReleaseRecord常量 |
|
45 |
/**操作人类型-员工*/ |
|
46 |
public static Integer OPERATOR_TYPE_EMPLOYEES = 0; |
|
47 |
/**操作人类型-管理员*/ |
|
48 |
public static Integer OPERATOR_TYPE_ADMIN = 1; |
|
49 |
/**操作人类型-用户自领*/ |
|
50 |
public static Integer OPERATOR_TYPE_USER = 2; |
|
51 |
/**操作人类型-系统*/ |
|
52 |
public static Integer OPERATOR_TYPE_SYSTEM = 3; |
|
53 |
/**操作人类型-用户订单购买*/ |
|
54 |
public static Integer OPERATOR_TYPE_USER_ORDER = 4; |
|
55 |
|
7c680b
|
56 |
} |