fei.wang
2024-04-15 61747a14819075bf6da2c1597b6c22e22e026686
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
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by FernFlower decompiler)
//
 
package com.flow.pojo;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
 
@TableName("card")
public class Card {
    @TableId(type = IdType.AUTO)
    private Long num;
    private String company;
    private String cardnumber;
    private Integer zflow;
    private Integer syflow;
    private String carddate;
    private String operator;
    private String bindid;
    private String location;
    private String notes;
    private String enddate;
    private String enterdate;
    private String rechargedate;
    private String rechargemoney;
    private String none;
    private String status;
    private String iccid;
    private Integer syll;
    private String flow;
 
    private String uptime;
 
    private Integer unitprice;
 
    private String remainingdays;
 
    @TableField(exist = false)
    private String caozuoname;
 
    public Card(Long num, String company, String cardnumber, Integer zflow, Integer syflow, String carddate, String operator, String bindid, String location, String notes, String enddate, String enterdate, String rechargedate, String rechargemoney, String none, String status, String iccid, Integer syll, String uptime,String flow,Integer unitprice,String remainingdays) {
        this.num = num;
        this.company = company;
        this.cardnumber = cardnumber;
        this.zflow = zflow;
        this.syflow = syflow;
        this.carddate = carddate;
        this.operator = operator;
        this.bindid = bindid;
        this.location = location;
        this.notes = notes;
        this.enddate = enddate;
        this.enterdate = enterdate;
        this.rechargedate = rechargedate;
        this.rechargemoney = rechargemoney;
        this.none = none;
        this.status = status;
        this.iccid = iccid;
        this.syll = syll;
        this.uptime = uptime;
        this.unitprice = unitprice;
        this.flow = flow;
        this.remainingdays = remainingdays;
 
 
    }
 
    public Card() {
    }
 
    public boolean equals(Object o) {
        if (o == this) {
            return true;
        } else if (!(o instanceof Card)) {
            return false;
        } else {
            Card other = (Card)o;
            if (!other.canEqual(this)) {
                return false;
            } else {
                label239: {
                    Object this$num = this.getNum();
                    Object other$num = other.getNum();
                    if (this$num == null) {
                        if (other$num == null) {
                            break label239;
                        }
                    } else if (this$num.equals(other$num)) {
                        break label239;
                    }
 
                    return false;
                }
 
                Object this$zflow = this.getZflow();
                Object other$zflow = other.getZflow();
                if (this$zflow == null) {
                    if (other$zflow != null) {
                        return false;
                    }
                } else if (!this$zflow.equals(other$zflow)) {
                    return false;
                }
 
                Object this$syflow = this.getSyflow();
                Object other$syflow = other.getSyflow();
                if (this$syflow == null) {
                    if (other$syflow != null) {
                        return false;
                    }
                } else if (!this$syflow.equals(other$syflow)) {
                    return false;
                }
 
                label218: {
                    Object this$syll = this.getSyll();
                    Object other$syll = other.getSyll();
                    if (this$syll == null) {
                        if (other$syll == null) {
                            break label218;
                        }
                    } else if (this$syll.equals(other$syll)) {
                        break label218;
                    }
 
                    return false;
                }
 
                label211: {
                    Object this$company = this.getCompany();
                    Object other$company = other.getCompany();
                    if (this$company == null) {
                        if (other$company == null) {
                            break label211;
                        }
                    } else if (this$company.equals(other$company)) {
                        break label211;
                    }
 
                    return false;
                }
 
                Object this$cardnumber = this.getCardnumber();
                Object other$cardnumber = other.getCardnumber();
                if (this$cardnumber == null) {
                    if (other$cardnumber != null) {
                        return false;
                    }
                } else if (!this$cardnumber.equals(other$cardnumber)) {
                    return false;
                }
 
                Object this$carddate = this.getCarddate();
                Object other$carddate = other.getCarddate();
                if (this$carddate == null) {
                    if (other$carddate != null) {
                        return false;
                    }
                } else if (!this$carddate.equals(other$carddate)) {
                    return false;
                }
 
                label190: {
                    Object this$operator = this.getOperator();
                    Object other$operator = other.getOperator();
                    if (this$operator == null) {
                        if (other$operator == null) {
                            break label190;
                        }
                    } else if (this$operator.equals(other$operator)) {
                        break label190;
                    }
 
                    return false;
                }
 
                label183: {
                    Object this$bindid = this.getBindid();
                    Object other$bindid = other.getBindid();
                    if (this$bindid == null) {
                        if (other$bindid == null) {
                            break label183;
                        }
                    } else if (this$bindid.equals(other$bindid)) {
                        break label183;
                    }
 
                    return false;
                }
 
                Object this$location = this.getLocation();
                Object other$location = other.getLocation();
                if (this$location == null) {
                    if (other$location != null) {
                        return false;
                    }
                } else if (!this$location.equals(other$location)) {
                    return false;
                }
 
                label169: {
                    Object this$notes = this.getNotes();
                    Object other$notes = other.getNotes();
                    if (this$notes == null) {
                        if (other$notes == null) {
                            break label169;
                        }
                    } else if (this$notes.equals(other$notes)) {
                        break label169;
                    }
 
                    return false;
                }
 
                Object this$enddate = this.getEnddate();
                Object other$enddate = other.getEnddate();
                if (this$enddate == null) {
                    if (other$enddate != null) {
                        return false;
                    }
                } else if (!this$enddate.equals(other$enddate)) {
                    return false;
                }
 
                label155: {
                    Object this$enterdate = this.getEnterdate();
                    Object other$enterdate = other.getEnterdate();
                    if (this$enterdate == null) {
                        if (other$enterdate == null) {
                            break label155;
                        }
                    } else if (this$enterdate.equals(other$enterdate)) {
                        break label155;
                    }
 
                    return false;
                }
 
                Object this$rechargedate = this.getRechargedate();
                Object other$rechargedate = other.getRechargedate();
                if (this$rechargedate == null) {
                    if (other$rechargedate != null) {
                        return false;
                    }
                } else if (!this$rechargedate.equals(other$rechargedate)) {
                    return false;
                }
 
                Object this$rechargemoney = this.getRechargemoney();
                Object other$rechargemoney = other.getRechargemoney();
                if (this$rechargemoney == null) {
                    if (other$rechargemoney != null) {
                        return false;
                    }
                } else if (!this$rechargemoney.equals(other$rechargemoney)) {
                    return false;
                }
 
                label134: {
                    Object this$none = this.getNone();
                    Object other$none = other.getNone();
                    if (this$none == null) {
                        if (other$none == null) {
                            break label134;
                        }
                    } else if (this$none.equals(other$none)) {
                        break label134;
                    }
 
                    return false;
                }
 
                label127: {
                    Object this$status = this.getStatus();
                    Object other$status = other.getStatus();
                    if (this$status == null) {
                        if (other$status == null) {
                            break label127;
                        }
                    } else if (this$status.equals(other$status)) {
                        break label127;
                    }
 
                    return false;
                }
 
                Object this$iccid = this.getIccid();
                Object other$iccid = other.getIccid();
                if (this$iccid == null) {
                    if (other$iccid != null) {
                        return false;
                    }
                } else if (!this$iccid.equals(other$iccid)) {
                    return false;
                }
 
                Object this$uptime = this.getUptime();
                Object other$uptime = other.getUptime();
                if (this$uptime == null) {
                    if (other$uptime != null) {
                        return false;
                    }
                } else if (!this$uptime.equals(other$uptime)) {
                    return false;
                }
 
                Object this$flow = this.getFlow();
                Object other$flow = other.getFlow();
                if (this$flow == null) {
                    if (other$flow != null) {
                        return false;
                    }
                } else if (!this$flow.equals(other$flow)) {
                    return false;
                }
 
 
                Object this$unitprice = this.getUnitprice();
                Object other$unitprice = other.getUnitprice();
                if (this$unitprice == null) {
                    if (other$unitprice != null) {
                        return false;
                    }
                } else if (!this$unitprice.equals(other$unitprice)) {
                    return false;
                }
 
                Object this$remainingdays = this.getRemainingdays();
                Object other$remainingdays = other.getRemainingdays();
                if (this$remainingdays == null) {
                    if (other$remainingdays != null) {
                        return false;
                    }
                } else if (!this$remainingdays.equals(other$remainingdays)) {
                    return false;
                }
 
                return true;
            }
        }
    }
 
    protected boolean canEqual(Object other) {
        return other instanceof Card;
    }
 
    public int hashCode() {
 
        int result = 1;
        Object $num = this.getNum();
        result = result * 59 + ($num == null ? 43 : $num.hashCode());
        Object $zflow = this.getZflow();
        result = result * 59 + ($zflow == null ? 43 : $zflow.hashCode());
        Object $syflow = this.getSyflow();
        result = result * 59 + ($syflow == null ? 43 : $syflow.hashCode());
        Object $syll = this.getSyll();
        result = result * 59 + ($syll == null ? 43 : $syll.hashCode());
        Object $company = this.getCompany();
        result = result * 59 + ($company == null ? 43 : $company.hashCode());
        Object $cardnumber = this.getCardnumber();
        result = result * 59 + ($cardnumber == null ? 43 : $cardnumber.hashCode());
        Object $carddate = this.getCarddate();
        result = result * 59 + ($carddate == null ? 43 : $carddate.hashCode());
        Object $operator = this.getOperator();
        result = result * 59 + ($operator == null ? 43 : $operator.hashCode());
        Object $bindid = this.getBindid();
        result = result * 59 + ($bindid == null ? 43 : $bindid.hashCode());
        Object $location = this.getLocation();
        result = result * 59 + ($location == null ? 43 : $location.hashCode());
        Object $notes = this.getNotes();
        result = result * 59 + ($notes == null ? 43 : $notes.hashCode());
        Object $enddate = this.getEnddate();
        result = result * 59 + ($enddate == null ? 43 : $enddate.hashCode());
        Object $enterdate = this.getEnterdate();
        result = result * 59 + ($enterdate == null ? 43 : $enterdate.hashCode());
        Object $rechargedate = this.getRechargedate();
        result = result * 59 + ($rechargedate == null ? 43 : $rechargedate.hashCode());
        Object $rechargemoney = this.getRechargemoney();
        result = result * 59 + ($rechargemoney == null ? 43 : $rechargemoney.hashCode());
        Object $none = this.getNone();
        result = result * 59 + ($none == null ? 43 : $none.hashCode());
        Object $status = this.getStatus();
        result = result * 59 + ($status == null ? 43 : $status.hashCode());
        Object $iccid = this.getIccid();
        result = result * 59 + ($iccid == null ? 43 : $iccid.hashCode());
        Object $uptime = this.getUptime();
        result = result * 59 + ($uptime == null ? 43 : $uptime.hashCode());
        Object $remainingdays = this.getRemainingdays();
        result = result * 59 + ($remainingdays == null ? 43 : $remainingdays.hashCode());
        Object $unitprice = this.getUnitprice();
        result = result * 59 + ($unitprice == null ? 43 : $unitprice.hashCode());
        Object $flow = this.getFlow();
        result = result * 59 + ($flow == null ? 43 : $flow.hashCode());
        return result;
    }
 
    public String toString() {
        return "Card(num=" + this.getNum() + ", company=" + this.getCompany() + ", cardnumber=" + this.getCardnumber() + ", zflow=" + this.getZflow() + ", syflow=" + this.getSyflow() + ", carddate=" + this.getCarddate() + ", operator=" + this.getOperator() + ", bindid=" + this.getBindid() + ", location=" + this.getLocation() + ", notes=" + this.getNotes() + ", enddate=" + this.getEnddate() + ", enterdate=" + this.getEnterdate() + ", rechargedate=" + this.getRechargedate() + ", rechargemoney=" + this.getRechargemoney() + ", none=" + this.getNone() + ", status=" + this.getStatus() + ", iccid=" + this.getIccid() + ", syll=" + this.getSyll() + ", uptime=" + this.getUptime() +", remainingdays=" + this.getRemainingdays() +", flow=" + this.getFlow() +", unitPrice=" + this.getUnitprice() + ")";
    }
 
    public void setNum(Long num) {
        this.num = num;
    }
 
    public void setCompany(String company) {
        this.company = company;
    }
 
    public void setCardnumber(String cardnumber) {
        this.cardnumber = cardnumber;
    }
 
    public void setZflow(Integer zflow) {
        this.zflow = zflow;
    }
 
    public void setSyflow(Integer syflow) {
        this.syflow = syflow;
    }
 
    public void setCarddate(String carddate) {
        this.carddate = carddate;
    }
 
    public void setOperator(String operator) {
        this.operator = operator;
    }
 
    public void setBindid(String bindid) {
        this.bindid = bindid;
    }
 
    public void setLocation(String location) {
        this.location = location;
    }
 
    public void setNotes(String notes) {
        this.notes = notes;
    }
 
    public void setEnddate(String enddate) {
        this.enddate = enddate;
    }
 
    public void setEnterdate(String enterdate) {
        this.enterdate = enterdate;
    }
 
    public void setRechargedate(String rechargedate) {
        this.rechargedate = rechargedate;
    }
 
    public void setRechargemoney(String rechargemoney) {
        this.rechargemoney = rechargemoney;
    }
 
    public void setNone(String none) {
        this.none = none;
    }
 
    public void setStatus(String status) {
        this.status = status;
    }
 
    public void setIccid(String iccid) {
        this.iccid = iccid;
    }
 
    public void setSyll(Integer syll) {
        this.syll = syll;
    }
 
    public void setUptime(String uptime) {
        this.uptime = uptime;
    }
 
    public void setFlow(String flow) {
        this.flow = flow;
    }
 
//    public void setUnitPrice(Integer unitPrice) {
//        this.unitPrice = unitPrice;
//    }
 
    public Long getNum() {
        return this.num;
    }
 
    public String getCompany() {
        return this.company;
    }
 
    public String getCardnumber() {
        return this.cardnumber;
    }
 
    public Integer getZflow() {
        return this.zflow;
    }
 
    public Integer getSyflow() {
        return this.syflow;
    }
 
    public String getCarddate() {
        return this.carddate;
    }
 
    public String getOperator() {
        return this.operator;
    }
 
    public String getBindid() {
        return this.bindid;
    }
 
    public String getLocation() {
        return this.location;
    }
 
    public String getNotes() {
        return this.notes;
    }
 
    public String getEnddate() {
        return this.enddate;
    }
 
    public String getEnterdate() {
        return this.enterdate;
    }
 
    public String getRechargedate() {
        return this.rechargedate;
    }
 
    public String getRechargemoney() {
        return this.rechargemoney;
    }
 
    public String getNone() {
        return this.none;
    }
 
    public String getStatus() {
        return this.status;
    }
 
    public String getIccid() {
        return this.iccid;
    }
 
    public Integer getSyll() {
        return this.syll;
    }
 
    public String getUptime() {
        return this.uptime;
    }
 
//    public Integer getUnitPrice() {
//        return this.unitPrice;
//    }
 
    public String getFlow() {
        return this.flow;
    }
 
    public String getRemainingdays() {
        return remainingdays;
    }
 
    public void setRemainingdays(String remainingdays) {
        this.remainingdays = remainingdays;
    }
 
    public Integer getUnitprice() {
        return unitprice;
    }
 
    public void setUnitprice(Integer unitprice) {
        this.unitprice = unitprice;
    }
 
    public String getCaozuoname() {
        return caozuoname;
    }
 
    public void setCaozuoname(String caozuoname) {
        this.caozuoname = caozuoname;
    }
}