admin
2020-05-20 98b1a0affd69bbe63223c21fdd2c404e8bedfccb
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
package com.yeshi.fanli.entity.bus.user.vip;
 
import java.util.Date;
import java.util.List;
 
import javax.persistence.Transient;
 
import org.springframework.data.annotation.Id;
import org.springframework.data.mongodb.core.index.Indexed;
import org.springframework.data.mongodb.core.mapping.Document;
import org.springframework.data.mongodb.core.mapping.Field;
 
import com.yeshi.fanli.entity.bus.user.UserInfo;
 
/**
 * 会员赠送申请
 * @author Administrator
 *
 */
@Document(collection = "giveVIPApplyInfo")
public class GiveVIPApplyInfo {
 
    public final static int STATE_NO_INFO = -1;// 需要提交资料
 
    public final static int STATE_NOT_VERIFY = 0;// 尚未审核
 
    public final static int STATE_REJECT = 1;// 拒绝
 
    public final static int STATE_SUCCESS = 2;// 开通成功
 
    @Id
    private String id;
    @Field
    private Long targetUid;// 开通目标用户ID
    @Indexed
    @Field
    private Long sourceUid;// 开通源用户ID
    @Field
    private UserLevelEnum level;// 开通等级
    @Field
    private String phone;// 电话号码
    @Field
    private String wxID;// 微信号
    @Field
    private String applyReason;// 申请原因
    @Field
    private Boolean hasDoOtherPlatform;// 是否做过其他平台
    @Field
    private String otherPlatformName;// 做过其他平台的名称
    @Field
    private Integer otherDirectTeams;// 其他平台的直接粉丝数量
    @Field
    private Integer otherInDirectTeams;// 其他平台的间接粉丝数量
    @Field
    private String otherLevel;// 其他平台的等级
    @Field
    private String otherMonthIncome;// 其他平台的月收入
    @Field
    private List<String> imgList;// 上传的图片列表
    @Field
    private Integer state;// 状态
    @Field
    private Date verifyTime;// 审核时间
    @Field
    private String rejectReson;// 拒绝理由
    @Field
    private String mark;// 备注
    @Indexed
    @Field
    private Date createTime;// 创建时间
    @Field
    private Date updateTime;// 更改时间
    @Field
    private Long adminUserId;// 审核人员ID
 
    @Transient
    private String otherPlatformInfo;// 平台信息
 
    @Transient
    private UserInfo targetUser;
 
    public String getApplyReason() {
        return applyReason;
    }
 
    public void setApplyReason(String applyReason) {
        this.applyReason = applyReason;
    }
 
    public UserInfo getTargetUser() {
        return targetUser;
    }
 
    public void setTargetUser(UserInfo targetUser) {
        this.targetUser = targetUser;
    }
 
    public String getOtherPlatformInfo() {
        return otherPlatformInfo;
    }
 
    public void setOtherPlatformInfo(String otherPlatformInfo) {
        this.otherPlatformInfo = otherPlatformInfo;
    }
 
    public Long getAdminUserId() {
        return adminUserId;
    }
 
    public void setAdminUserId(Long adminUserId) {
        this.adminUserId = adminUserId;
    }
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public Long getTargetUid() {
        return targetUid;
    }
 
    public void setTargetUid(Long targetUid) {
        this.targetUid = targetUid;
    }
 
    public Long getSourceUid() {
        return sourceUid;
    }
 
    public void setSourceUid(Long sourceUid) {
        this.sourceUid = sourceUid;
    }
 
    public UserLevelEnum getLevel() {
        return level;
    }
 
    public void setLevel(UserLevelEnum level) {
        this.level = level;
    }
 
    public String getPhone() {
        return phone;
    }
 
    public void setPhone(String phone) {
        this.phone = phone;
    }
 
    public String getWxID() {
        return wxID;
    }
 
    public void setWxID(String wxID) {
        this.wxID = wxID;
    }
 
    public Boolean getHasDoOtherPlatform() {
        return hasDoOtherPlatform;
    }
 
    public void setHasDoOtherPlatform(Boolean hasDoOtherPlatform) {
        this.hasDoOtherPlatform = hasDoOtherPlatform;
    }
 
    public String getOtherPlatformName() {
        return otherPlatformName;
    }
 
    public void setOtherPlatformName(String otherPlatformName) {
        this.otherPlatformName = otherPlatformName;
    }
 
    public Integer getOtherDirectTeams() {
        return otherDirectTeams;
    }
 
    public void setOtherDirectTeams(Integer otherDirectTeams) {
        this.otherDirectTeams = otherDirectTeams;
    }
 
    public Integer getOtherInDirectTeams() {
        return otherInDirectTeams;
    }
 
    public void setOtherInDirectTeams(Integer otherInDirectTeams) {
        this.otherInDirectTeams = otherInDirectTeams;
    }
 
    public String getOtherLevel() {
        return otherLevel;
    }
 
    public void setOtherLevel(String otherLevel) {
        this.otherLevel = otherLevel;
    }
 
    public String getOtherMonthIncome() {
        return otherMonthIncome;
    }
 
    public void setOtherMonthIncome(String otherMonthIncome) {
        this.otherMonthIncome = otherMonthIncome;
    }
 
    public List<String> getImgList() {
        return imgList;
    }
 
    public void setImgList(List<String> imgList) {
        this.imgList = imgList;
    }
 
    public Integer getState() {
        return state;
    }
 
    public void setState(Integer state) {
        this.state = state;
    }
 
    public Date getVerifyTime() {
        return verifyTime;
    }
 
    public void setVerifyTime(Date verifyTime) {
        this.verifyTime = verifyTime;
    }
 
    public String getRejectReson() {
        return rejectReson;
    }
 
    public void setRejectReson(String rejectReson) {
        this.rejectReson = rejectReson;
    }
 
    public String getMark() {
        return mark;
    }
 
    public void setMark(String mark) {
        this.mark = mark;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Date getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
}