yangys
2024-03-27 e48aa2ac8dea1be5db11c63edf0b912c4ad5ce65
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
package com.qianwen.smartman.modules.system.excel;
 
import com.alibaba.excel.annotation.ExcelIgnore;
import com.alibaba.excel.annotation.ExcelProperty;
import com.alibaba.excel.annotation.write.style.ColumnWidth;
import com.alibaba.excel.annotation.write.style.ContentRowHeight;
import com.alibaba.excel.annotation.write.style.HeadRowHeight;
import java.io.Serializable;
import java.util.Date;
 
@HeadRowHeight(20)
@ColumnWidth(25)
@ContentRowHeight(18)
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/excel/UserExcel.class */
public class UserExcel implements Serializable {
    private static final long serialVersionUID = 1;
    @ExcelIgnore
    @ExcelProperty({"用户平台"})
    private String userType;
    @ColumnWidth(20)
    @ExcelProperty({"用户平台名称"})
    private String userTypeName;
    @ColumnWidth(15)
    @ExcelProperty({"账户"})
    private String account;
    @ColumnWidth(10)
    @ExcelProperty({"姓名"})
    private String realName;
    @ExcelProperty({"邮箱"})
    private String email;
    @ColumnWidth(15)
    @ExcelProperty({"手机"})
    private String phone;
    @ExcelIgnore
    @ExcelProperty({"角色ID"})
    private String roleId;
    @ExcelIgnore
    @ExcelProperty({"部门ID"})
    private String deptId;
    @ExcelIgnore
    @ExcelProperty({"岗位ID"})
    private String postId;
    @ExcelProperty({"角色名称"})
    private String roleName;
    @ExcelProperty({"部门名称"})
    private String deptName;
    @ExcelProperty({"岗位名称"})
    private String postName;
    @ColumnWidth(20)
    @ExcelProperty({"生日"})
    private Date birthday;
 
    public void setUserType(final String userType) {
        this.userType = userType;
    }
 
    public void setUserTypeName(final String userTypeName) {
        this.userTypeName = userTypeName;
    }
 
    public void setAccount(final String account) {
        this.account = account;
    }
 
    public void setRealName(final String realName) {
        this.realName = realName;
    }
 
    public void setEmail(final String email) {
        this.email = email;
    }
 
    public void setPhone(final String phone) {
        this.phone = phone;
    }
 
    public void setRoleId(final String roleId) {
        this.roleId = roleId;
    }
 
    public void setDeptId(final String deptId) {
        this.deptId = deptId;
    }
 
    public void setPostId(final String postId) {
        this.postId = postId;
    }
 
    public void setRoleName(final String roleName) {
        this.roleName = roleName;
    }
 
    public void setDeptName(final String deptName) {
        this.deptName = deptName;
    }
 
    public void setPostName(final String postName) {
        this.postName = postName;
    }
 
    public void setBirthday(final Date birthday) {
        this.birthday = birthday;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof UserExcel) {
            UserExcel other = (UserExcel) o;
            if (other.canEqual(this)) {
                Object this$userType = getUserType();
                Object other$userType = other.getUserType();
                if (this$userType == null) {
                    if (other$userType != null) {
                        return false;
                    }
                } else if (!this$userType.equals(other$userType)) {
                    return false;
                }
                Object this$userTypeName = getUserTypeName();
                Object other$userTypeName = other.getUserTypeName();
                if (this$userTypeName == null) {
                    if (other$userTypeName != null) {
                        return false;
                    }
                } else if (!this$userTypeName.equals(other$userTypeName)) {
                    return false;
                }
                Object this$account = getAccount();
                Object other$account = other.getAccount();
                if (this$account == null) {
                    if (other$account != null) {
                        return false;
                    }
                } else if (!this$account.equals(other$account)) {
                    return false;
                }
                Object this$realName = getRealName();
                Object other$realName = other.getRealName();
                if (this$realName == null) {
                    if (other$realName != null) {
                        return false;
                    }
                } else if (!this$realName.equals(other$realName)) {
                    return false;
                }
                Object this$email = getEmail();
                Object other$email = other.getEmail();
                if (this$email == null) {
                    if (other$email != null) {
                        return false;
                    }
                } else if (!this$email.equals(other$email)) {
                    return false;
                }
                Object this$phone = getPhone();
                Object other$phone = other.getPhone();
                if (this$phone == null) {
                    if (other$phone != null) {
                        return false;
                    }
                } else if (!this$phone.equals(other$phone)) {
                    return false;
                }
                Object this$roleId = getRoleId();
                Object other$roleId = other.getRoleId();
                if (this$roleId == null) {
                    if (other$roleId != null) {
                        return false;
                    }
                } else if (!this$roleId.equals(other$roleId)) {
                    return false;
                }
                Object this$deptId = getDeptId();
                Object other$deptId = other.getDeptId();
                if (this$deptId == null) {
                    if (other$deptId != null) {
                        return false;
                    }
                } else if (!this$deptId.equals(other$deptId)) {
                    return false;
                }
                Object this$postId = getPostId();
                Object other$postId = other.getPostId();
                if (this$postId == null) {
                    if (other$postId != null) {
                        return false;
                    }
                } else if (!this$postId.equals(other$postId)) {
                    return false;
                }
                Object this$roleName = getRoleName();
                Object other$roleName = other.getRoleName();
                if (this$roleName == null) {
                    if (other$roleName != null) {
                        return false;
                    }
                } else if (!this$roleName.equals(other$roleName)) {
                    return false;
                }
                Object this$deptName = getDeptName();
                Object other$deptName = other.getDeptName();
                if (this$deptName == null) {
                    if (other$deptName != null) {
                        return false;
                    }
                } else if (!this$deptName.equals(other$deptName)) {
                    return false;
                }
                Object this$postName = getPostName();
                Object other$postName = other.getPostName();
                if (this$postName == null) {
                    if (other$postName != null) {
                        return false;
                    }
                } else if (!this$postName.equals(other$postName)) {
                    return false;
                }
                Object this$birthday = getBirthday();
                Object other$birthday = other.getBirthday();
                return this$birthday == null ? other$birthday == null : this$birthday.equals(other$birthday);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof UserExcel;
    }
 
    public int hashCode() {
        Object $userType = getUserType();
        int result = (1 * 59) + ($userType == null ? 43 : $userType.hashCode());
        Object $userTypeName = getUserTypeName();
        int result2 = (result * 59) + ($userTypeName == null ? 43 : $userTypeName.hashCode());
        Object $account = getAccount();
        int result3 = (result2 * 59) + ($account == null ? 43 : $account.hashCode());
        Object $realName = getRealName();
        int result4 = (result3 * 59) + ($realName == null ? 43 : $realName.hashCode());
        Object $email = getEmail();
        int result5 = (result4 * 59) + ($email == null ? 43 : $email.hashCode());
        Object $phone = getPhone();
        int result6 = (result5 * 59) + ($phone == null ? 43 : $phone.hashCode());
        Object $roleId = getRoleId();
        int result7 = (result6 * 59) + ($roleId == null ? 43 : $roleId.hashCode());
        Object $deptId = getDeptId();
        int result8 = (result7 * 59) + ($deptId == null ? 43 : $deptId.hashCode());
        Object $postId = getPostId();
        int result9 = (result8 * 59) + ($postId == null ? 43 : $postId.hashCode());
        Object $roleName = getRoleName();
        int result10 = (result9 * 59) + ($roleName == null ? 43 : $roleName.hashCode());
        Object $deptName = getDeptName();
        int result11 = (result10 * 59) + ($deptName == null ? 43 : $deptName.hashCode());
        Object $postName = getPostName();
        int result12 = (result11 * 59) + ($postName == null ? 43 : $postName.hashCode());
        Object $birthday = getBirthday();
        return (result12 * 59) + ($birthday == null ? 43 : $birthday.hashCode());
    }
 
    public String toString() {
        return "UserExcel(userType=" + getUserType() + ", userTypeName=" + getUserTypeName() + ", account=" + getAccount() + ", realName=" + getRealName() + ", email=" + getEmail() + ", phone=" + getPhone() + ", roleId=" + getRoleId() + ", deptId=" + getDeptId() + ", postId=" + getPostId() + ", roleName=" + getRoleName() + ", deptName=" + getDeptName() + ", postName=" + getPostName() + ", birthday=" + getBirthday() + ")";
    }
 
    public String getUserType() {
        return this.userType;
    }
 
    public String getUserTypeName() {
        return this.userTypeName;
    }
 
    public String getAccount() {
        return this.account;
    }
 
    public String getRealName() {
        return this.realName;
    }
 
    public String getEmail() {
        return this.email;
    }
 
    public String getPhone() {
        return this.phone;
    }
 
    public String getRoleId() {
        return this.roleId;
    }
 
    public String getDeptId() {
        return this.deptId;
    }
 
    public String getPostId() {
        return this.postId;
    }
 
    public String getRoleName() {
        return this.roleName;
    }
 
    public String getDeptName() {
        return this.deptName;
    }
 
    public String getPostName() {
        return this.postName;
    }
 
    public Date getBirthday() {
        return this.birthday;
    }
}