fei.wang
2024-03-07 80c20bb65f4b73d8beb817e0d595889cd44479dd
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
//
// 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("chongzhi")
public class Chongzhi {
    private Long num;
    private String czcard;
    private String czmoney;
    private String jynum;
    private String czdate;
    private String company;
    private String kaimoney;
    private String status;
 
    public Chongzhi(Long num, String czcard, String czmoney, String jynum, String czdate, String company, String kaimoney, String status) {
        this.num = num;
        this.czcard = czcard;
        this.czmoney = czmoney;
        this.jynum = jynum;
        this.czdate = czdate;
        this.company = company;
        this.kaimoney = kaimoney;
        this.status = status;
    }
 
    public Chongzhi() {
    }
 
    public boolean equals(Object o) {
        if (o == this) {
            return true;
        } else if (!(o instanceof Chongzhi)) {
            return false;
        } else {
            Chongzhi other = (Chongzhi)o;
            if (!other.canEqual(this)) {
                return false;
            } else {
                label107: {
                    Object this$num = this.getNum();
                    Object other$num = other.getNum();
                    if (this$num == null) {
                        if (other$num == null) {
                            break label107;
                        }
                    } else if (this$num.equals(other$num)) {
                        break label107;
                    }
 
                    return false;
                }
 
                Object this$czcard = this.getCzcard();
                Object other$czcard = other.getCzcard();
                if (this$czcard == null) {
                    if (other$czcard != null) {
                        return false;
                    }
                } else if (!this$czcard.equals(other$czcard)) {
                    return false;
                }
 
                Object this$czmoney = this.getCzmoney();
                Object other$czmoney = other.getCzmoney();
                if (this$czmoney == null) {
                    if (other$czmoney != null) {
                        return false;
                    }
                } else if (!this$czmoney.equals(other$czmoney)) {
                    return false;
                }
 
                label86: {
                    Object this$jynum = this.getJynum();
                    Object other$jynum = other.getJynum();
                    if (this$jynum == null) {
                        if (other$jynum == null) {
                            break label86;
                        }
                    } else if (this$jynum.equals(other$jynum)) {
                        break label86;
                    }
 
                    return false;
                }
 
                label79: {
                    Object this$czdate = this.getCzdate();
                    Object other$czdate = other.getCzdate();
                    if (this$czdate == null) {
                        if (other$czdate == null) {
                            break label79;
                        }
                    } else if (this$czdate.equals(other$czdate)) {
                        break label79;
                    }
 
                    return false;
                }
 
                label72: {
                    Object this$company = this.getCompany();
                    Object other$company = other.getCompany();
                    if (this$company == null) {
                        if (other$company == null) {
                            break label72;
                        }
                    } else if (this$company.equals(other$company)) {
                        break label72;
                    }
 
                    return false;
                }
 
                Object this$kaimoney = this.getKaimoney();
                Object other$kaimoney = other.getKaimoney();
                if (this$kaimoney == null) {
                    if (other$kaimoney != null) {
                        return false;
                    }
                } else if (!this$kaimoney.equals(other$kaimoney)) {
                    return false;
                }
 
                Object this$status = this.getStatus();
                Object other$status = other.getStatus();
                if (this$status == null) {
                    if (other$status != null) {
                        return false;
                    }
                } else if (!this$status.equals(other$status)) {
                    return false;
                }
 
                return true;
            }
        }
    }
 
    protected boolean canEqual(Object other) {
        return other instanceof Chongzhi;
    }
 
    public int hashCode() {
 
        int result = 1;
        Object $num = this.getNum();
        result = result * 59 + ($num == null ? 43 : $num.hashCode());
        Object $czcard = this.getCzcard();
        result = result * 59 + ($czcard == null ? 43 : $czcard.hashCode());
        Object $czmoney = this.getCzmoney();
        result = result * 59 + ($czmoney == null ? 43 : $czmoney.hashCode());
        Object $jynum = this.getJynum();
        result = result * 59 + ($jynum == null ? 43 : $jynum.hashCode());
        Object $czdate = this.getCzdate();
        result = result * 59 + ($czdate == null ? 43 : $czdate.hashCode());
        Object $company = this.getCompany();
        result = result * 59 + ($company == null ? 43 : $company.hashCode());
        Object $kaimoney = this.getKaimoney();
        result = result * 59 + ($kaimoney == null ? 43 : $kaimoney.hashCode());
        Object $status = this.getStatus();
        result = result * 59 + ($status == null ? 43 : $status.hashCode());
        return result;
    }
 
    public String toString() {
        return "Chongzhi(num=" + this.getNum() + ", czcard=" + this.getCzcard() + ", czmoney=" + this.getCzmoney() + ", jynum=" + this.getJynum() + ", czdate=" + this.getCzdate() + ", company=" + this.getCompany() + ", kaimoney=" + this.getKaimoney() + ", status=" + this.getStatus() + ")";
    }
 
    public void setNum(Long num) {
        this.num = num;
    }
 
    public void setCzcard(String czcard) {
        this.czcard = czcard;
    }
 
    public void setCzmoney(String czmoney) {
        this.czmoney = czmoney;
    }
 
    public void setJynum(String jynum) {
        this.jynum = jynum;
    }
 
    public void setCzdate(String czdate) {
        this.czdate = czdate;
    }
 
    public void setCompany(String company) {
        this.company = company;
    }
 
    public void setKaimoney(String kaimoney) {
        this.kaimoney = kaimoney;
    }
 
    public void setStatus(String status) {
        this.status = status;
    }
 
    public Long getNum() {
        return this.num;
    }
 
    public String getCzcard() {
        return this.czcard;
    }
 
    public String getCzmoney() {
        return this.czmoney;
    }
 
    public String getJynum() {
        return this.jynum;
    }
 
    public String getCzdate() {
        return this.czdate;
    }
 
    public String getCompany() {
        return this.company;
    }
 
    public String getKaimoney() {
        return this.kaimoney;
    }
 
    public String getStatus() {
        return this.status;
    }
}