1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
| package com.dsh.activity.model.request;
|
|
| import lombok.Data;
|
| import java.math.BigDecimal;
| import java.util.List;
|
| @Data
| public class CouponDataVo {
| /**
| * 用户类型2=城市管理者 1=平台管理者
| */
| Integer userType;
| /**
| * 城市管理者id
| */
| Integer cityManagerId;
| /**
| * 券名称
| */
| String couponName;
| /**
| * 优惠券类型
| */
| Integer prescription;
| /**
| * 条件金额
| */
| BigDecimal condition;
| /**
| * 减去金额
| */
| BigDecimal subtraction;
| /**
| * 折扣金额
| */
| BigDecimal discount;
| /**
| * 体验券名称
| */
| String experience;
| /**
| * 说明
| */
| String illustrate;
| /**
| * 发放方式
| */
| Integer distributionMethod;
| /**
| * 所需积分
| */
| Integer requiredPoints;
| /**
| * 用户人群
| */
| Integer userGroup;
| /**
| * 发放数量
| */
| Integer quantityIssued;
| /**
| * 限领数量
| */
| Integer pickUpQuantity;
| /**
| * 有效期
| */
| String periodOfValidity;
| /**
| * 兑换方式
| */
| Integer exchangeMethod;
| /**
| * 所需现金
| */
| BigDecimal requiredCash;
| /**
| * 封面图
| */
| String goodImg;
| /**
| * 图片列表
| */
| String goodImgs;
| /**
| * 适用范围
| */
| Integer company;
| /**
| * 城市code
| */
| String cityIds;
| /**
| * 门店列表
| */
| String storeIds;
|
| Integer objType;
| }
|
|