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
//
// 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("loginjilu")
public class Loginjilu {
    private Long num;
    private String logincompany;
    private String loginphone;
    private String ip;
    private String logindate;
    private String loginoutdate;
    private String none;
 
    public Loginjilu(Long num, String logincompany, String loginphone, String ip, String logindate, String loginoutdate, String none) {
        this.num = num;
        this.logincompany = logincompany;
        this.loginphone = loginphone;
        this.ip = ip;
        this.logindate = logindate;
        this.loginoutdate = loginoutdate;
        this.none = none;
    }
 
    public Loginjilu() {
    }
 
    public boolean equals(Object o) {
        if (o == this) {
            return true;
        } else if (!(o instanceof Loginjilu)) {
            return false;
        } else {
            Loginjilu other = (Loginjilu)o;
            if (!other.canEqual(this)) {
                return false;
            } else {
                label95: {
                    Object this$num = this.getNum();
                    Object other$num = other.getNum();
                    if (this$num == null) {
                        if (other$num == null) {
                            break label95;
                        }
                    } else if (this$num.equals(other$num)) {
                        break label95;
                    }
 
                    return false;
                }
 
                Object this$logincompany = this.getLogincompany();
                Object other$logincompany = other.getLogincompany();
                if (this$logincompany == null) {
                    if (other$logincompany != null) {
                        return false;
                    }
                } else if (!this$logincompany.equals(other$logincompany)) {
                    return false;
                }
 
                Object this$loginphone = this.getLoginphone();
                Object other$loginphone = other.getLoginphone();
                if (this$loginphone == null) {
                    if (other$loginphone != null) {
                        return false;
                    }
                } else if (!this$loginphone.equals(other$loginphone)) {
                    return false;
                }
 
                label74: {
                    Object this$ip = this.getIp();
                    Object other$ip = other.getIp();
                    if (this$ip == null) {
                        if (other$ip == null) {
                            break label74;
                        }
                    } else if (this$ip.equals(other$ip)) {
                        break label74;
                    }
 
                    return false;
                }
 
                label67: {
                    Object this$logindate = this.getLogindate();
                    Object other$logindate = other.getLogindate();
                    if (this$logindate == null) {
                        if (other$logindate == null) {
                            break label67;
                        }
                    } else if (this$logindate.equals(other$logindate)) {
                        break label67;
                    }
 
                    return false;
                }
 
                Object this$loginoutdate = this.getLoginoutdate();
                Object other$loginoutdate = other.getLoginoutdate();
                if (this$loginoutdate == null) {
                    if (other$loginoutdate != null) {
                        return false;
                    }
                } else if (!this$loginoutdate.equals(other$loginoutdate)) {
                    return false;
                }
 
                Object this$none = this.getNone();
                Object other$none = other.getNone();
                if (this$none == null) {
                    if (other$none != null) {
                        return false;
                    }
                } else if (!this$none.equals(other$none)) {
                    return false;
                }
 
                return true;
            }
        }
    }
 
    protected boolean canEqual(Object other) {
        return other instanceof Loginjilu;
    }
 
    public int hashCode() {
 
        int result = 1;
        Object $num = this.getNum();
        result = result * 59 + ($num == null ? 43 : $num.hashCode());
        Object $logincompany = this.getLogincompany();
        result = result * 59 + ($logincompany == null ? 43 : $logincompany.hashCode());
        Object $loginphone = this.getLoginphone();
        result = result * 59 + ($loginphone == null ? 43 : $loginphone.hashCode());
        Object $ip = this.getIp();
        result = result * 59 + ($ip == null ? 43 : $ip.hashCode());
        Object $logindate = this.getLogindate();
        result = result * 59 + ($logindate == null ? 43 : $logindate.hashCode());
        Object $loginoutdate = this.getLoginoutdate();
        result = result * 59 + ($loginoutdate == null ? 43 : $loginoutdate.hashCode());
        Object $none = this.getNone();
        result = result * 59 + ($none == null ? 43 : $none.hashCode());
        return result;
    }
 
    public String toString() {
        return "Loginjilu(num=" + this.getNum() + ", logincompany=" + this.getLogincompany() + ", loginphone=" + this.getLoginphone() + ", ip=" + this.getIp() + ", logindate=" + this.getLogindate() + ", loginoutdate=" + this.getLoginoutdate() + ", none=" + this.getNone() + ")";
    }
 
    public void setNum(Long num) {
        this.num = num;
    }
 
    public void setLogincompany(String logincompany) {
        this.logincompany = logincompany;
    }
 
    public void setLoginphone(String loginphone) {
        this.loginphone = loginphone;
    }
 
    public void setIp(String ip) {
        this.ip = ip;
    }
 
    public void setLogindate(String logindate) {
        this.logindate = logindate;
    }
 
    public void setLoginoutdate(String loginoutdate) {
        this.loginoutdate = loginoutdate;
    }
 
    public void setNone(String none) {
        this.none = none;
    }
 
    public Long getNum() {
        return this.num;
    }
 
    public String getLogincompany() {
        return this.logincompany;
    }
 
    public String getLoginphone() {
        return this.loginphone;
    }
 
    public String getIp() {
        return this.ip;
    }
 
    public String getLogindate() {
        return this.logindate;
    }
 
    public String getLoginoutdate() {
        return this.loginoutdate;
    }
 
    public String getNone() {
        return this.none;
    }
}