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
package com.matrix.system.shopXcx.bean;
 
import com.matrix.core.pojo.EntityDTO;
import com.matrix.core.anotations.Extend;
 
import java.util.Date;
import java.util.List;
 
/**
 * @description 记录
 * @author wzy
 * @date 2020-03-21 15:26
 */
public class ShopActivitiesGroupJoin  extends EntityDTO{
    @Extend
    private static final long serialVersionUID = 1L;
 
 
    /**
     * 团长开团后等待付款
     */
    public static final int ACTIVITIES_JOIN_WAIT_PAY = 4;
 
    /**
     * 拼团进行中
     */
    public static final int ACTIVITIES_JOIN_ING = 3;
 
    /**
     * 拼团失败
     */
    public static final int ACTIVITIES_JOIN_FAIL = 2;
 
    /**
     * 拼团成功
     */
    public static final int ACTIVITIES_JOIN_SUCCESS = 1;
 
    /**
     * 主键
     */
    private Long  id;
            
    
    /**
     * 活动主表主键
     */
    private Long  actId;
            
    
    /**
     * 拼团信息主键
     */
    private Long  giId;
            
    
    /**
     * 拼团号
     */
    private Integer  gjNo;
            
    
    /**
     * 开团时间
     */
    private Date gjBeginTime;
            
    
    /**
     * 最晚结束时间
     */
    private Date  gjEndTime;
            
    
    /**
     * 拼团状态
     */
    private Integer  gjStatus;
            
    
    /**
     * 团长ID
     */
    private Long  gjHeadId;
 
    private String headName;
 
    private Long gpId;
 
    private Long remainingTime;
 
    private String avatarUrl;
 
    private Integer theLast;
 
    private boolean hasChildren = true;
 
    List<ShopActivitiesGroupJoinUser> joinUserList;
 
    private ShopActivitiesGroupPrice groupPrice;
    private Long companyId;
    public Long getCompanyId() {
        return companyId;
    }
 
    public void setCompanyId(Long companyId) {
        this.companyId = companyId;
    }
    public Integer getTheLast() {
        return theLast;
    }
 
    public void setTheLast(Integer theLast) {
        this.theLast = theLast;
    }
 
    public Long getRemainingTime() {
        return remainingTime;
    }
 
    public void setRemainingTime(Long remainingTime) {
        this.remainingTime = remainingTime;
    }
 
    public ShopActivitiesGroupPrice getGroupPrice() {
        return groupPrice;
    }
 
    public void setGroupPrice(ShopActivitiesGroupPrice groupPrice) {
        this.groupPrice = groupPrice;
    }
 
    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 getActId() {
        return actId;
    }
       
       public void setActId(Long actId) {
        this.actId=actId;
    }
       
 
    public Long getGiId() {
        return giId;
    }
       
       public void setGiId(Long giId) {
        this.giId=giId;
    }
       
 
    public Integer getGjNo() {
        return gjNo;
    }
       
       public void setGjNo(Integer gjNo) {
        this.gjNo=gjNo;
    }
       
 
    public Date getGjBeginTime() {
        return gjBeginTime;
    }
       
       public void setGjBeginTime(Date gjBeginTime) {
        this.gjBeginTime=gjBeginTime;
    }
       
 
    public Date getGjEndTime() {
        return gjEndTime;
    }
       
       public void setGjEndTime(Date gjEndTime) {
        this.gjEndTime=gjEndTime;
    }
       
 
    public Integer getGjStatus() {
        return gjStatus;
    }
       
       public void setGjStatus(Integer gjStatus) {
        this.gjStatus=gjStatus;
    }
 
    public Long getGjHeadId() {
        return gjHeadId;
    }
 
    public void setGjHeadId(Long gjHeadId) {
        this.gjHeadId = gjHeadId;
    }
 
    public Long getGpId() {
        return gpId;
    }
 
    public void setGpId(Long gpId) {
        this.gpId = gpId;
    }
 
    public List<ShopActivitiesGroupJoinUser> getJoinUserList() {
        return joinUserList;
    }
 
    public void setJoinUserList(List<ShopActivitiesGroupJoinUser> joinUserList) {
        this.joinUserList = joinUserList;
    }
 
    public String getHeadName() {
        return headName;
    }
 
    public void setHeadName(String headName) {
        this.headName = headName;
    }
 
    public boolean isHasChildren() {
        return hasChildren;
    }
 
    public void setHasChildren(boolean hasChildren) {
        this.hasChildren = hasChildren;
    }
}