Helius
2022-05-27 4351e71d782741143a98f86f6648acd16689165f
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
package com.matrix.system.shopXcx.bean;
 
import com.matrix.core.pojo.EntityDTO;
import com.matrix.core.anotations.Extend;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * @description shop_activities_group_join_use
 * @author wzy
 * @date 2020-03-21 15:26
 */
public class ShopActivitiesGroupJoinUser  extends EntityDTO{
    @Extend
    private static final long serialVersionUID = 1L;
 
    /**
     * 是否为团长 是
     */
    public static final int USER_IS_HEAD_Y = 1;
 
    /**
     * 是否为团长 否
     */
    public static final int USER_IS_HEAD_N = 2;
 
    /**
     * 是否已支付 是
     */
    public static final int IS_HAS_PAY_Y = 1;
 
    /**
     * 是否已支付 否
     */
    public static final int IS_HAS_PAY_N = 2;
 
    /**
     * 是否超时
     */
    public static final int IS_HAS_PAY_TIME_OUT = 3;
 
    /**
     * 是否已取消 是
     */
    public static final int IS_HAS_CANCEL_Y = 1;
 
    /**
     * 是否已取消 否
     */
    public static final int IS_HAS_CANCEL_N = 2;
 
    /**
     * 主键
     */
    private Long  id;
            
    
    /**
     * 记录主键
     */
    private Long  gjId;
            
    
    /**
     * 拼团信息主键
     */
    private Long  giId;
            
    
    /**
     * 用户Id
     */
    private Long  userId;
            
    
    /**
     * 订单ID
     */
    private Long  orderId;
            
    
    /**
     * 是否为团长
     */
    private Integer  isHead;
 
    /**
     * 是否已支付 1-是 2-否
     */
    private Integer isHasPay;
 
    /**
     * 支付结束时间
     */
    private Date payEndTime;
 
    /**
     * 支付剩余时间
     */
    private Long remainTime;
            
    private String avatarUrl;
 
    /**
     * 是否新用户 1-是 2-否
     */
    private Integer isNewUser;
 
    private Integer isHasCancel;
 
    private String userName;
 
    private String orderNo;
 
    private BigDecimal orderMoney;
 
    private int count;
 
    private int orderStatus;
 
    private int payStatus;
 
    private Long companyId;
 
    public Long getCompanyId() {
        return companyId;
    }
 
    public void setCompanyId(Long companyId) {
        this.companyId = companyId;
    }
 
    public BigDecimal getOrderMoney() {
        return orderMoney;
    }
 
    public void setOrderMoney(BigDecimal orderMoney) {
        this.orderMoney = orderMoney;
    }
 
    public int getCount() {
        return count;
    }
 
    public void setCount(int count) {
        this.count = count;
    }
 
    public int getOrderStatus() {
        return orderStatus;
    }
 
    public void setOrderStatus(int orderStatus) {
        this.orderStatus = orderStatus;
    }
 
    public int getPayStatus() {
        return payStatus;
    }
 
    public void setPayStatus(int payStatus) {
        this.payStatus = payStatus;
    }
 
    public String getAvatarUrl() {
        return avatarUrl;
    }
 
    public void setAvatarUrl(String avatarUrl) {
        this.avatarUrl = avatarUrl;
    }
 
    public Long getId() {
        return id;
    }
       
       public void setId(Long id) {
        this.id=id;
    }
       
 
    public Long getGjId() {
        return gjId;
    }
       
       public void setGjId(Long gjId) {
        this.gjId=gjId;
    }
       
 
    public Long getGiId() {
        return giId;
    }
       
       public void setGiId(Long giId) {
        this.giId=giId;
    }
 
 
    public Long getUserId() {
        return userId;
    }
 
    public void setUserId(Long userId) {
        this.userId = userId;
    }
 
    public Long getOrderId() {
        return orderId;
    }
       
       public void setOrderId(Long orderId) {
        this.orderId=orderId;
    }
       
 
    public Integer getIsHead() {
        return isHead;
    }
       
       public void setIsHead(Integer isHead) {
        this.isHead=isHead;
    }
 
    public Integer getIsHasPay() {
        return isHasPay;
    }
 
    public void setIsHasPay(Integer isHasPay) {
        this.isHasPay = isHasPay;
    }
 
    public Date getPayEndTime() {
        return payEndTime;
    }
 
    public void setPayEndTime(Date payEndTime) {
        this.payEndTime = payEndTime;
    }
 
    public Long getRemainTime() {
        return remainTime;
    }
 
    public void setRemainTime(Long remainTime) {
        this.remainTime = remainTime;
    }
 
    public Integer getIsNewUser() {
        return isNewUser;
    }
 
    public void setIsNewUser(Integer isNewUser) {
        this.isNewUser = isNewUser;
    }
 
    public Integer getIsHasCancel() {
        return isHasCancel;
    }
 
    public void setIsHasCancel(Integer isHasCancel) {
        this.isHasCancel = isHasCancel;
    }
 
    public String getUserName() {
        return userName;
    }
 
    public void setUserName(String userName) {
        this.userName = userName;
    }
 
    public String getOrderNo() {
        return orderNo;
    }
 
    public void setOrderNo(String orderNo) {
        this.orderNo = orderNo;
    }
}