zj
2024-06-03 4afe73cb84c5a609662b8b4ee20693de9b86b9a3
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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
package com.nq.pojo;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.beans.ConstructorProperties;
import java.math.BigDecimal;
import java.util.Date;
@TableName("user")
@Data
public class User {
    @TableId(type = IdType.AUTO,value = "id")
    private Integer id;
    private Integer agentId;
    private String agentName;
    private String phone;
    private String userPwd;
    private String withPwd;
    private String nickName;
    private String realName;
    private String idCard;
 
 
    private Integer accountType;
 
    private BigDecimal userAmt;
 
    private BigDecimal enableAmt;
 
    private BigDecimal sumChargeAmt;
 
    private BigDecimal sumBuyAmt;
 
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    private String recomPhone;
    private Integer isLock;
    private Integer isLogin;
    private Date regTime;
    private String regIp;
    private String regAddress;
    private String img1Key;
    private String img2Key;
    private String img3Key;
    private Integer isActive;
    private String authMsg;
    private BigDecimal userIndexAmt;
    private BigDecimal enableIndexAmt;
    private BigDecimal userFutAmt;
    private BigDecimal enableFutAmt;
    private String withdrawalPwd;
    /*总操盘金额*/
    private BigDecimal tradingAmount;
 
    private BigDecimal djzj;
 
    private String vaildNumber;
 
    public String getWithdrawalPwd() {
        return withdrawalPwd;
    }
 
    public void setWithdrawalPwd(String withdrawalPwd) {
        this.withdrawalPwd = withdrawalPwd;
    }
 
    public void setAgentId(Integer agentId) {
        this.agentId = agentId;
    }
 
    public void setAgentName(String agentName) {
        this.agentName = agentName;
    }
 
    public void setPhone(String phone) {
        this.phone = phone;
    }
 
    public void setUserPwd(String userPwd) {
        this.userPwd = userPwd;
    }
 
    public void setWithPwd(String withPwd) {
        this.withPwd = withPwd;
    }
 
    public void setNickName(String nickName) {
        this.nickName = nickName;
    }
 
    public void setRealName(String realName) {
        this.realName = realName;
    }
 
    public void setIdCard(String idCard) {
        this.idCard = idCard;
    }
 
    public void setAccountType(Integer accountType) {
        this.accountType = accountType;
    }
 
    public void setUserAmt(BigDecimal userAmt) {
        this.userAmt = userAmt;
    }
 
    public void setEnableAmt(BigDecimal enableAmt) {
        this.enableAmt = enableAmt;
    }
 
    public void setSumChargeAmt(BigDecimal sumChargeAmt) {
        this.sumChargeAmt = sumChargeAmt;
    }
 
    public void setSumBuyAmt(BigDecimal sumBuyAmt) {
        this.sumBuyAmt = sumBuyAmt;
    }
 
    public void setRecomPhone(String recomPhone) {
        this.recomPhone = recomPhone;
    }
 
    public void setIsLock(Integer isLock) {
        this.isLock = isLock;
    }
 
    public void setIsLogin(Integer isLogin) {
        this.isLogin = isLogin;
    }
 
    public void setRegTime(Date regTime) {
        this.regTime = regTime;
    }
 
    public void setRegIp(String regIp) {
        this.regIp = regIp;
    }
 
    public void setRegAddress(String regAddress) {
        this.regAddress = regAddress;
    }
 
    public void setImg1Key(String img1Key) {
        this.img1Key = img1Key;
    }
 
    public void setImg2Key(String img2Key) {
        this.img2Key = img2Key;
    }
 
    public void setImg3Key(String img3Key) {
        this.img3Key = img3Key;
    }
 
    public void setIsActive(Integer isActive) {
        this.isActive = isActive;
    }
 
    public void setAuthMsg(String authMsg) {
        this.authMsg = authMsg;
    }
 
    public void setUserIndexAmt(BigDecimal userIndexAmt) {
        this.userIndexAmt = userIndexAmt;
    }
 
    public void setEnableIndexAmt(BigDecimal enableIndexAmt) {
        this.enableIndexAmt = enableIndexAmt;
    }
 
    public void setUserFutAmt(BigDecimal userFutAmt) {
        this.userFutAmt = userFutAmt;
    }
 
    public void setEnableFutAmt(BigDecimal enableFutAmt) {
        this.enableFutAmt = enableFutAmt;
    }
 
    public boolean equals(Object o) {
        if (o == this) return true;
        if (!(o instanceof User)) return false;
        User other = (User) o;
        if (!other.canEqual(this)) return false;
        Object this$id = getId(), other$id = other.getId();
        if ((this$id == null) ? (other$id != null) : !this$id.equals(other$id)) return false;
        Object this$agentId = getAgentId(), other$agentId = other.getAgentId();
        if ((this$agentId == null) ? (other$agentId != null) : !this$agentId.equals(other$agentId)) return false;
        Object this$agentName = getAgentName(), other$agentName = other.getAgentName();
        if ((this$agentName == null) ? (other$agentName != null) : !this$agentName.equals(other$agentName))
            return false;
        Object this$phone = getPhone(), other$phone = other.getPhone();
        if ((this$phone == null) ? (other$phone != null) : !this$phone.equals(other$phone)) return false;
        Object this$userPwd = getUserPwd(), other$userPwd = other.getUserPwd();
        if ((this$userPwd == null) ? (other$userPwd != null) : !this$userPwd.equals(other$userPwd)) return false;
        Object this$withPwd = getWithPwd(), other$withPwd = other.getWithPwd();
        if ((this$withPwd == null) ? (other$withPwd != null) : !this$withPwd.equals(other$withPwd)) return false;
        Object this$nickName = getNickName(), other$nickName = other.getNickName();
        if ((this$nickName == null) ? (other$nickName != null) : !this$nickName.equals(other$nickName)) return false;
        Object this$realName = getRealName(), other$realName = other.getRealName();
        if ((this$realName == null) ? (other$realName != null) : !this$realName.equals(other$realName)) return false;
        Object this$idCard = getIdCard(), other$idCard = other.getIdCard();
        if ((this$idCard == null) ? (other$idCard != null) : !this$idCard.equals(other$idCard)) return false;
        Object this$accountType = getAccountType(), other$accountType = other.getAccountType();
        if ((this$accountType == null) ? (other$accountType != null) : !this$accountType.equals(other$accountType))
            return false;
        Object this$userAmt = getUserAmt(), other$userAmt = other.getUserAmt();
        if ((this$userAmt == null) ? (other$userAmt != null) : !this$userAmt.equals(other$userAmt)) return false;
        Object this$enableAmt = getEnableAmt(), other$enableAmt = other.getEnableAmt();
        if ((this$enableAmt == null) ? (other$enableAmt != null) : !this$enableAmt.equals(other$enableAmt))
            return false;
        Object this$sumChargeAmt = getSumChargeAmt(), other$sumChargeAmt = other.getSumChargeAmt();
        if ((this$sumChargeAmt == null) ? (other$sumChargeAmt != null) : !this$sumChargeAmt.equals(other$sumChargeAmt))
            return false;
        Object this$sumBuyAmt = getSumBuyAmt(), other$sumBuyAmt = other.getSumBuyAmt();
        if ((this$sumBuyAmt == null) ? (other$sumBuyAmt != null) : !this$sumBuyAmt.equals(other$sumBuyAmt))
            return false;
        Object this$recomPhone = getRecomPhone(), other$recomPhone = other.getRecomPhone();
        if ((this$recomPhone == null) ? (other$recomPhone != null) : !this$recomPhone.equals(other$recomPhone))
            return false;
        Object this$isLock = getIsLock(), other$isLock = other.getIsLock();
        if ((this$isLock == null) ? (other$isLock != null) : !this$isLock.equals(other$isLock)) return false;
        Object this$isLogin = getIsLogin(), other$isLogin = other.getIsLogin();
        if ((this$isLogin == null) ? (other$isLogin != null) : !this$isLogin.equals(other$isLogin)) return false;
        Object this$regTime = getRegTime(), other$regTime = other.getRegTime();
        if ((this$regTime == null) ? (other$regTime != null) : !this$regTime.equals(other$regTime)) return false;
        Object this$regIp = getRegIp(), other$regIp = other.getRegIp();
        if ((this$regIp == null) ? (other$regIp != null) : !this$regIp.equals(other$regIp)) return false;
        Object this$regAddress = getRegAddress(), other$regAddress = other.getRegAddress();
        if ((this$regAddress == null) ? (other$regAddress != null) : !this$regAddress.equals(other$regAddress))
            return false;
        Object this$img1Key = getImg1Key(), other$img1Key = other.getImg1Key();
        if ((this$img1Key == null) ? (other$img1Key != null) : !this$img1Key.equals(other$img1Key)) return false;
        Object this$img2Key = getImg2Key(), other$img2Key = other.getImg2Key();
        if ((this$img2Key == null) ? (other$img2Key != null) : !this$img2Key.equals(other$img2Key)) return false;
        Object this$img3Key = getImg3Key(), other$img3Key = other.getImg3Key();
        if ((this$img3Key == null) ? (other$img3Key != null) : !this$img3Key.equals(other$img3Key)) return false;
        Object this$isActive = getIsActive(), other$isActive = other.getIsActive();
        if ((this$isActive == null) ? (other$isActive != null) : !this$isActive.equals(other$isActive)) return false;
        Object this$authMsg = getAuthMsg(), other$authMsg = other.getAuthMsg();
        if ((this$authMsg == null) ? (other$authMsg != null) : !this$authMsg.equals(other$authMsg)) return false;
        Object this$userIndexAmt = getUserIndexAmt(), other$userIndexAmt = other.getUserIndexAmt();
        if ((this$userIndexAmt == null) ? (other$userIndexAmt != null) : !this$userIndexAmt.equals(other$userIndexAmt))
            return false;
        Object this$enableIndexAmt = getEnableIndexAmt(), other$enableIndexAmt = other.getEnableIndexAmt();
        if ((this$enableIndexAmt == null) ? (other$enableIndexAmt != null) : !this$enableIndexAmt.equals(other$enableIndexAmt))
            return false;
        Object this$userFutAmt = getUserFutAmt(), other$userFutAmt = other.getUserFutAmt();
        if ((this$userFutAmt == null) ? (other$userFutAmt != null) : !this$userFutAmt.equals(other$userFutAmt))
            return false;
 
        Object this$enableFutAmt = getEnableFutAmt(), other$enableFutAmt = other.getEnableFutAmt();
         if ((this$enableFutAmt == null) ? (other$enableFutAmt != null) : !this$enableFutAmt.equals(other$enableFutAmt))
             return false;
 
        Object this$withdrawalPwd = getWithdrawalPwd(), other$withdrawalPwd = other.getWithdrawalPwd();
        return !((this$withdrawalPwd == null) ? (other$withdrawalPwd != null) : !this$withdrawalPwd.equals(other$withdrawalPwd));
 
    }
 
    protected boolean canEqual(Object other) {
        return other instanceof User;
    }
 
    public int hashCode() {
        int PRIME = 59;
        int result = 1;
        Object $id = getId();
        result = result * 59 + (($id == null) ? 43 : $id.hashCode());
        Object $agentId = getAgentId();
        result = result * 59 + (($agentId == null) ? 43 : $agentId.hashCode());
        Object $agentName = getAgentName();
        result = result * 59 + (($agentName == null) ? 43 : $agentName.hashCode());
        Object $phone = getPhone();
        result = result * 59 + (($phone == null) ? 43 : $phone.hashCode());
        Object $userPwd = getUserPwd();
        result = result * 59 + (($userPwd == null) ? 43 : $userPwd.hashCode());
        Object $withPwd = getWithPwd();
        result = result * 59 + (($withPwd == null) ? 43 : $withPwd.hashCode());
        Object $nickName = getNickName();
        result = result * 59 + (($nickName == null) ? 43 : $nickName.hashCode());
        Object $realName = getRealName();
        result = result * 59 + (($realName == null) ? 43 : $realName.hashCode());
        Object $idCard = getIdCard();
        result = result * 59 + (($idCard == null) ? 43 : $idCard.hashCode());
        Object $accountType = getAccountType();
        result = result * 59 + (($accountType == null) ? 43 : $accountType.hashCode());
        Object $userAmt = getUserAmt();
        result = result * 59 + (($userAmt == null) ? 43 : $userAmt.hashCode());
        Object $enableAmt = getEnableAmt();
        result = result * 59 + (($enableAmt == null) ? 43 : $enableAmt.hashCode());
        Object $sumChargeAmt = getSumChargeAmt();
        result = result * 59 + (($sumChargeAmt == null) ? 43 : $sumChargeAmt.hashCode());
        Object $sumBuyAmt = getSumBuyAmt();
        result = result * 59 + (($sumBuyAmt == null) ? 43 : $sumBuyAmt.hashCode());
        Object $recomPhone = getRecomPhone();
        result = result * 59 + (($recomPhone == null) ? 43 : $recomPhone.hashCode());
        Object $isLock = getIsLock();
        result = result * 59 + (($isLock == null) ? 43 : $isLock.hashCode());
        Object $isLogin = getIsLogin();
        result = result * 59 + (($isLogin == null) ? 43 : $isLogin.hashCode());
        Object $regTime = getRegTime();
        result = result * 59 + (($regTime == null) ? 43 : $regTime.hashCode());
        Object $regIp = getRegIp();
        result = result * 59 + (($regIp == null) ? 43 : $regIp.hashCode());
        Object $regAddress = getRegAddress();
        result = result * 59 + (($regAddress == null) ? 43 : $regAddress.hashCode());
        Object $img1Key = getImg1Key();
        result = result * 59 + (($img1Key == null) ? 43 : $img1Key.hashCode());
        Object $img2Key = getImg2Key();
        result = result * 59 + (($img2Key == null) ? 43 : $img2Key.hashCode());
        Object $img3Key = getImg3Key();
        result = result * 59 + (($img3Key == null) ? 43 : $img3Key.hashCode());
        Object $isActive = getIsActive();
        result = result * 59 + (($isActive == null) ? 43 : $isActive.hashCode());
        Object $authMsg = getAuthMsg();
        result = result * 59 + (($authMsg == null) ? 43 : $authMsg.hashCode());
        Object $userIndexAmt = getUserIndexAmt();
        result = result * 59 + (($userIndexAmt == null) ? 43 : $userIndexAmt.hashCode());
        Object $enableIndexAmt = getEnableIndexAmt();
        result = result * 59 + (($enableIndexAmt == null) ? 43 : $enableIndexAmt.hashCode());
        Object $userFutAmt = getUserFutAmt();
        result = result * 59 + (($userFutAmt == null) ? 43 : $userFutAmt.hashCode());
        Object $enableFutAmt = getEnableFutAmt();
        result= result * 59 + (($enableFutAmt == null) ? 43 : $enableFutAmt.hashCode());
 
        Object $withdrawalPwd = getWithdrawalPwd();
        return result * 59 + (($withdrawalPwd == null) ? 43 : $withdrawalPwd.hashCode());
    }
 
    public String toString() {
        return "User(id=" + getId() + ", agentId=" + getAgentId() + ", agentName=" + getAgentName() + ", phone=" + getPhone() + ", userPwd=" + getUserPwd() + ", withPwd=" + getWithPwd() + ", nickName=" + getNickName() + ", realName=" + getRealName() + ", idCard=" + getIdCard() + ", accountType=" + getAccountType() + ", userAmt=" + getUserAmt() + ", enableAmt=" + getEnableAmt() + ", sumChargeAmt=" + getSumChargeAmt() + ", sumBuyAmt=" + getSumBuyAmt() + ", recomPhone=" + getRecomPhone() + ", isLock=" + getIsLock() + ", isLogin=" + getIsLogin() + ", regTime=" + getRegTime() + ", regIp=" + getRegIp() + ", regAddress=" + getRegAddress() + ", img1Key=" + getImg1Key() + ", img2Key=" + getImg2Key() + ", img3Key=" + getImg3Key() + ", isActive=" + getIsActive() + ", authMsg=" + getAuthMsg() + ", userIndexAmt=" + getUserIndexAmt() + ", enableIndexAmt=" + getEnableIndexAmt() + ", userFutAmt=" + getUserFutAmt() + ", enableFutAmt=" + getEnableFutAmt() +", withdrawalPwd=" + getWithdrawalPwd() +", tradingAmount=" + getTradingAmount() +",djzj=" + getDjzj()+")";
    }
 
    public User() {
    }
 
    @ConstructorProperties({"id", "agentId", "agentName", "phone", "userPwd", "withPwd", "nickName", "realName", "idCard", "accountType", "userAmt", "enableAmt", "sumChargeAmt", "sumBuyAmt", "recomPhone", "isLock", "isLogin", "regTime", "regIp", "regAddress", "img1Key", "img2Key", "img3Key", "isActive", "authMsg", "userIndexAmt", "enableIndexAmt", "userFutAmt", "enableFutAmt", "withdrawalPwd","tradingAmount","djzj","vaildNumber"})
    public User(Integer id, Integer agentId, String agentName, String phone, String userPwd, String withPwd, String nickName, String realName, String idCard, Integer accountType, BigDecimal userAmt, BigDecimal enableAmt, BigDecimal sumChargeAmt, BigDecimal sumBuyAmt, String recomPhone, Integer isLock, Integer isLogin, Date regTime, String regIp, String regAddress, String img1Key, String img2Key, String img3Key, Integer isActive, String authMsg, BigDecimal userIndexAmt, BigDecimal enableIndexAmt, BigDecimal userFutAmt, BigDecimal enableFutAmt, String withdrawalPwd, BigDecimal tradingAmount, BigDecimal djzj,String vaildNumber) {
        this.id = id;
        this.agentId = agentId;
        this.agentName = agentName;
        this.phone = phone;
        this.userPwd = userPwd;
        this.withPwd = withPwd;
        this.nickName = nickName;
        this.realName = realName;
        this.idCard = idCard;
        this.accountType = accountType;
        this.userAmt = userAmt;
        this.enableAmt = enableAmt;
        this.sumChargeAmt = sumChargeAmt;
        this.sumBuyAmt = sumBuyAmt;
        this.recomPhone = recomPhone;
        this.isLock = isLock;
        this.isLogin = isLogin;
        this.regTime = regTime;
        this.regIp = regIp;
        this.regAddress = regAddress;
        this.img1Key = img1Key;
        this.img2Key = img2Key;
        this.img3Key = img3Key;
        this.isActive = isActive;
        this.authMsg = authMsg;
        this.userIndexAmt = userIndexAmt;
        this.enableIndexAmt = enableIndexAmt;
        this.userFutAmt = userFutAmt;
        this.enableFutAmt = enableFutAmt;
        this.withdrawalPwd= withdrawalPwd;
        this.tradingAmount = tradingAmount;
        this.djzj = djzj;
        this.vaildNumber = vaildNumber;
    }
 
 
    public Integer getId() {
        return this.id;
    }
 
 
    public Integer getAgentId() {
        return this.agentId;
    }
 
 
    public String getAgentName() {
        return this.agentName;
    }
 
 
    public String getPhone() {
        return this.phone;
    }
 
 
    public String getUserPwd() {
        return this.userPwd;
    }
 
 
    public String getWithPwd() {
        return this.withPwd;
    }
 
 
    public String getNickName() {
        return this.nickName;
    }
 
 
    public String getRealName() {
        return this.realName;
    }
 
 
    public String getIdCard() {
        return this.idCard;
    }
 
 
    public Integer getAccountType() {
        return this.accountType;
    }
 
 
    public BigDecimal getUserAmt() {
        return this.userAmt;
    }
 
 
    public BigDecimal getEnableAmt() {
        return this.enableAmt;
    }
 
 
    public BigDecimal getSumChargeAmt() {
        return this.sumChargeAmt;
    }
 
 
    public BigDecimal getSumBuyAmt() {
        return this.sumBuyAmt;
    }
 
 
    public String getRecomPhone() {
        return this.recomPhone;
    }
 
 
    public Integer getIsLock() {
        return this.isLock;
    }
 
 
    public Integer getIsLogin() {
        return this.isLogin;
    }
 
 
    public Date getRegTime() {
        return this.regTime;
    }
 
 
    public String getRegIp() {
        return this.regIp;
    }
 
 
    public String getRegAddress() {
        return this.regAddress;
    }
 
 
    public String getImg1Key() {
        return this.img1Key;
    }
 
 
    public String getImg2Key() {
        return this.img2Key;
    }
 
 
    public String getImg3Key() {
        return this.img3Key;
    }
 
 
    public Integer getIsActive() {
        return this.isActive;
    }
 
 
    public String getAuthMsg() {
        return this.authMsg;
    }
 
 
    public BigDecimal getUserIndexAmt() {
        return this.userIndexAmt;
    }
 
 
    public BigDecimal getEnableIndexAmt() {
        return this.enableIndexAmt;
    }
 
 
    public BigDecimal getUserFutAmt() {
        return this.userFutAmt;
    }
 
 
    public BigDecimal getEnableFutAmt() {
        return this.enableFutAmt;
    }
 
    public BigDecimal getTradingAmount() {
        return tradingAmount;
    }
 
    public void setTradingAmount(BigDecimal tradingAmount) {
        this.tradingAmount = tradingAmount;
    }
}