fei.wang
2024-05-09 871d4095b07cedacb7fbef4c38d64982f539c404
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
//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by FernFlower decompiler)
//
 
package com.flow.pojo;
 
import com.baomidou.mybatisplus.annotation.TableName;
 
@TableName("zonginvoices")
public class Zonginvoices {
    private Integer sqnum;
    private String sqdate;
    private String fptt;
    private String xydm;
    private String khh;
    private String zcaddress;
    private String zcphone;
    private String fptype;
    private String sqkpmoney;
    private String shuilv;
    private String danhao;
    private String fpstate;
    private String fpxz;
    private String company;
    private String youji;
    private String lxphone;
 
    private String none;
 
    public Zonginvoices(Integer sqnum, String sqdate, String fptt, String xydm, String khh, String zcaddress, String zcphone, String fptype, String sqkpmoney, String shuilv, String danhao, String fpstate, String fpxz, String company, String youji, String lxphone) {
        this.sqnum = sqnum;
        this.sqdate = sqdate;
        this.fptt = fptt;
        this.xydm = xydm;
        this.khh = khh;
        this.zcaddress = zcaddress;
        this.zcphone = zcphone;
        this.fptype = fptype;
        this.sqkpmoney = sqkpmoney;
        this.shuilv = shuilv;
        this.danhao = danhao;
        this.fpstate = fpstate;
        this.fpxz = fpxz;
        this.company = company;
        this.youji = youji;
        this.lxphone = lxphone;
    }
 
    public Zonginvoices() {
    }
 
    public boolean equals(Object o) {
        if (o == this) {
            return true;
        } else if (!(o instanceof Zonginvoices)) {
            return false;
        } else {
            Zonginvoices other = (Zonginvoices)o;
            if (!other.canEqual(this)) {
                return false;
            } else {
                label203: {
                    Object this$sqnum = this.getSqnum();
                    Object other$sqnum = other.getSqnum();
                    if (this$sqnum == null) {
                        if (other$sqnum == null) {
                            break label203;
                        }
                    } else if (this$sqnum.equals(other$sqnum)) {
                        break label203;
                    }
 
                    return false;
                }
 
                Object this$sqdate = this.getSqdate();
                Object other$sqdate = other.getSqdate();
                if (this$sqdate == null) {
                    if (other$sqdate != null) {
                        return false;
                    }
                } else if (!this$sqdate.equals(other$sqdate)) {
                    return false;
                }
 
                Object this$fptt = this.getFptt();
                Object other$fptt = other.getFptt();
                if (this$fptt == null) {
                    if (other$fptt != null) {
                        return false;
                    }
                } else if (!this$fptt.equals(other$fptt)) {
                    return false;
                }
 
                label182: {
                    Object this$xydm = this.getXydm();
                    Object other$xydm = other.getXydm();
                    if (this$xydm == null) {
                        if (other$xydm == null) {
                            break label182;
                        }
                    } else if (this$xydm.equals(other$xydm)) {
                        break label182;
                    }
 
                    return false;
                }
 
                label175: {
                    Object this$khh = this.getKhh();
                    Object other$khh = other.getKhh();
                    if (this$khh == null) {
                        if (other$khh == null) {
                            break label175;
                        }
                    } else if (this$khh.equals(other$khh)) {
                        break label175;
                    }
 
                    return false;
                }
 
                label168: {
                    Object this$zcaddress = this.getZcaddress();
                    Object other$zcaddress = other.getZcaddress();
                    if (this$zcaddress == null) {
                        if (other$zcaddress == null) {
                            break label168;
                        }
                    } else if (this$zcaddress.equals(other$zcaddress)) {
                        break label168;
                    }
 
                    return false;
                }
 
                Object this$zcphone = this.getZcphone();
                Object other$zcphone = other.getZcphone();
                if (this$zcphone == null) {
                    if (other$zcphone != null) {
                        return false;
                    }
                } else if (!this$zcphone.equals(other$zcphone)) {
                    return false;
                }
 
                label154: {
                    Object this$fptype = this.getFptype();
                    Object other$fptype = other.getFptype();
                    if (this$fptype == null) {
                        if (other$fptype == null) {
                            break label154;
                        }
                    } else if (this$fptype.equals(other$fptype)) {
                        break label154;
                    }
 
                    return false;
                }
 
                Object this$sqkpmoney = this.getSqkpmoney();
                Object other$sqkpmoney = other.getSqkpmoney();
                if (this$sqkpmoney == null) {
                    if (other$sqkpmoney != null) {
                        return false;
                    }
                } else if (!this$sqkpmoney.equals(other$sqkpmoney)) {
                    return false;
                }
 
                label140: {
                    Object this$shuilv = this.getShuilv();
                    Object other$shuilv = other.getShuilv();
                    if (this$shuilv == null) {
                        if (other$shuilv == null) {
                            break label140;
                        }
                    } else if (this$shuilv.equals(other$shuilv)) {
                        break label140;
                    }
 
                    return false;
                }
 
                Object this$danhao = this.getDanhao();
                Object other$danhao = other.getDanhao();
                if (this$danhao == null) {
                    if (other$danhao != null) {
                        return false;
                    }
                } else if (!this$danhao.equals(other$danhao)) {
                    return false;
                }
 
                Object this$fpstate = this.getFpstate();
                Object other$fpstate = other.getFpstate();
                if (this$fpstate == null) {
                    if (other$fpstate != null) {
                        return false;
                    }
                } else if (!this$fpstate.equals(other$fpstate)) {
                    return false;
                }
 
                label119: {
                    Object this$fpxz = this.getFpxz();
                    Object other$fpxz = other.getFpxz();
                    if (this$fpxz == null) {
                        if (other$fpxz == null) {
                            break label119;
                        }
                    } else if (this$fpxz.equals(other$fpxz)) {
                        break label119;
                    }
 
                    return false;
                }
 
                label112: {
                    Object this$company = this.getCompany();
                    Object other$company = other.getCompany();
                    if (this$company == null) {
                        if (other$company == null) {
                            break label112;
                        }
                    } else if (this$company.equals(other$company)) {
                        break label112;
                    }
 
                    return false;
                }
 
                Object this$youji = this.getYouji();
                Object other$youji = other.getYouji();
                if (this$youji == null) {
                    if (other$youji != null) {
                        return false;
                    }
                } else if (!this$youji.equals(other$youji)) {
                    return false;
                }
 
                Object this$lxphone = this.getLxphone();
                Object other$lxphone = other.getLxphone();
                if (this$lxphone == null) {
                    if (other$lxphone != null) {
                        return false;
                    }
                } else if (!this$lxphone.equals(other$lxphone)) {
                    return false;
                }
 
                return true;
            }
        }
    }
 
    protected boolean canEqual(Object other) {
        return other instanceof Zonginvoices;
    }
 
    public int hashCode() {
 
        int result = 1;
        Object $sqnum = this.getSqnum();
        result = result * 59 + ($sqnum == null ? 43 : $sqnum.hashCode());
        Object $sqdate = this.getSqdate();
        result = result * 59 + ($sqdate == null ? 43 : $sqdate.hashCode());
        Object $fptt = this.getFptt();
        result = result * 59 + ($fptt == null ? 43 : $fptt.hashCode());
        Object $xydm = this.getXydm();
        result = result * 59 + ($xydm == null ? 43 : $xydm.hashCode());
        Object $khh = this.getKhh();
        result = result * 59 + ($khh == null ? 43 : $khh.hashCode());
        Object $zcaddress = this.getZcaddress();
        result = result * 59 + ($zcaddress == null ? 43 : $zcaddress.hashCode());
        Object $zcphone = this.getZcphone();
        result = result * 59 + ($zcphone == null ? 43 : $zcphone.hashCode());
        Object $fptype = this.getFptype();
        result = result * 59 + ($fptype == null ? 43 : $fptype.hashCode());
        Object $sqkpmoney = this.getSqkpmoney();
        result = result * 59 + ($sqkpmoney == null ? 43 : $sqkpmoney.hashCode());
        Object $shuilv = this.getShuilv();
        result = result * 59 + ($shuilv == null ? 43 : $shuilv.hashCode());
        Object $danhao = this.getDanhao();
        result = result * 59 + ($danhao == null ? 43 : $danhao.hashCode());
        Object $fpstate = this.getFpstate();
        result = result * 59 + ($fpstate == null ? 43 : $fpstate.hashCode());
        Object $fpxz = this.getFpxz();
        result = result * 59 + ($fpxz == null ? 43 : $fpxz.hashCode());
        Object $company = this.getCompany();
        result = result * 59 + ($company == null ? 43 : $company.hashCode());
        Object $youji = this.getYouji();
        result = result * 59 + ($youji == null ? 43 : $youji.hashCode());
        Object $lxphone = this.getLxphone();
        result = result * 59 + ($lxphone == null ? 43 : $lxphone.hashCode());
        return result;
    }
 
    public String toString() {
        return "Zonginvoices(sqnum=" + this.getSqnum() + ", sqdate=" + this.getSqdate() + ", fptt=" + this.getFptt() + ", xydm=" + this.getXydm() + ", khh=" + this.getKhh() + ", zcaddress=" + this.getZcaddress() + ", zcphone=" + this.getZcphone() + ", fptype=" + this.getFptype() + ", sqkpmoney=" + this.getSqkpmoney() + ", shuilv=" + this.getShuilv() + ", danhao=" + this.getDanhao() + ", fpstate=" + this.getFpstate() + ", fpxz=" + this.getFpxz() + ", company=" + this.getCompany() + ", youji=" + this.getYouji() + ", lxphone=" + this.getLxphone() + ")";
    }
 
    public void setSqnum(Integer sqnum) {
        this.sqnum = sqnum;
    }
 
    public void setSqdate(String sqdate) {
        this.sqdate = sqdate;
    }
 
    public void setFptt(String fptt) {
        this.fptt = fptt;
    }
 
    public void setXydm(String xydm) {
        this.xydm = xydm;
    }
 
    public void setKhh(String khh) {
        this.khh = khh;
    }
 
    public void setZcaddress(String zcaddress) {
        this.zcaddress = zcaddress;
    }
 
    public void setZcphone(String zcphone) {
        this.zcphone = zcphone;
    }
 
    public void setFptype(String fptype) {
        this.fptype = fptype;
    }
 
    public void setSqkpmoney(String sqkpmoney) {
        this.sqkpmoney = sqkpmoney;
    }
 
    public void setShuilv(String shuilv) {
        this.shuilv = shuilv;
    }
 
    public void setDanhao(String danhao) {
        this.danhao = danhao;
    }
 
    public void setFpstate(String fpstate) {
        this.fpstate = fpstate;
    }
 
    public void setFpxz(String fpxz) {
        this.fpxz = fpxz;
    }
 
    public void setCompany(String company) {
        this.company = company;
    }
 
    public void setYouji(String youji) {
        this.youji = youji;
    }
 
    public void setLxphone(String lxphone) {
        this.lxphone = lxphone;
    }
 
    public Integer getSqnum() {
        return this.sqnum;
    }
 
    public String getSqdate() {
        return this.sqdate;
    }
 
    public String getFptt() {
        return this.fptt;
    }
 
    public String getXydm() {
        return this.xydm;
    }
 
    public String getKhh() {
        return this.khh;
    }
 
    public String getZcaddress() {
        return this.zcaddress;
    }
 
    public String getZcphone() {
        return this.zcphone;
    }
 
    public String getFptype() {
        return this.fptype;
    }
 
    public String getSqkpmoney() {
        return this.sqkpmoney;
    }
 
    public String getShuilv() {
        return this.shuilv;
    }
 
    public String getDanhao() {
        return this.danhao;
    }
 
    public String getFpstate() {
        return this.fpstate;
    }
 
    public String getFpxz() {
        return this.fpxz;
    }
 
    public String getCompany() {
        return this.company;
    }
 
    public String getYouji() {
        return this.youji;
    }
 
    public String getLxphone() {
        return this.lxphone;
    }
 
    public String getNone() {
        return none;
    }
 
    public void setNone(String none) {
        this.none = none;
    }
}