Administrator
2023-06-19 49588f5a462ae7425e7eb030438a35fd80c246fa
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
package com.gk.firework.Domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
 
import java.io.Serializable;
import java.util.Date;
 
@TableName("user")
public class UserInfo implements Serializable {
    @TableField(exist = false)
    private static final long serialVersionUID = 1L;
 
    @TableId(type = IdType.AUTO)
    private Long id;
 
    /** 用户名  username **/
    private String username;
 
    /** 密码  password **/
    private String password;
 
    /** 邮箱  email **/
    private String email;
 
    /** 统一社会信用代码 code **/
    private String code;
 
    /** 办公电话  phone **/
    private String phone;
 
    /** 手机号  mobile **/
    private String mobile;
 
    /** 单位  company **/
    private String company;
 
    /** 部门  department **/
    private String department;
 
    /** 职务  job **/
    private String job;
 
    /** 创建人  createdby **/
    private String createdby;
 
    /** 创建时间  createddate **/
    private Date createddate;
 
    /** 更新人  lastmodifiedby **/
    private String lastmodifiedby;
 
    /** 更新时间  lastmodifieddate **/
    private Date lastmodifieddate;
 
    /** 省份  province **/
    private String province;
 
    /** 城市  city **/
    private String city;
 
    /** 区县  area **/
    private String area;
 
    /** 乡镇  town **/
    private String town;
 
    /** 社区  community **/
    private String community;
 
    /** 所属企业id  companyid **/
    private Long companyid;
 
    /** 状态  status **/
    private Byte status;
 
    /** 到期时间  expiredate **/
    private Date expiredate;
 
    /** 是否删除  isdel **/
    private Byte isdel;
 
    /** 是否销售端  issale **/
    private Byte issale;
 
    /** # 1超级管理员,2管理员,3普通用户 **/
    private Integer type;
    //企业单位编号
    private String companynumber;
 
    private Date deadline;
 
    /**     id   **/
    public Long getId() {
        return id;
    }
 
    /**     id   **/
    public void setId(Long id) {
        this.id = id;
    }
 
    /**   用户名  username   **/
    public String getUsername() {
        return username;
    }
 
    /**   用户名  username   **/
    public void setUsername(String username) {
        this.username = username == null ? null : username.trim();
    }
 
    /**   密码  password   **/
    public String getPassword() {
        return password;
    }
 
    /**   密码  password   **/
    public void setPassword(String password) {
        this.password = password == null ? null : password.trim();
    }
 
    /**   邮箱  email   **/
    public String getEmail() {
        return email;
    }
 
    /**   邮箱  email   **/
    public void setEmail(String email) {
        this.email = email == null ? null : email.trim();
    }
 
    /**   办公电话  phone   **/
    public String getPhone() {
        return phone;
    }
 
    /**   办公电话  phone   **/
    public void setPhone(String phone) {
        this.phone = phone == null ? null : phone.trim();
    }
 
    /**   手机号  mobile   **/
    public String getMobile() {
        return mobile;
    }
 
    /**   手机号  mobile   **/
    public void setMobile(String mobile) {
        this.mobile = mobile;
    }
 
    /**   单位  company   **/
    public String getCompany() {
        return company;
    }
 
    /**   单位  company   **/
    public void setCompany(String company) {
        this.company = company == null ? null : company.trim();
    }
 
    /**   部门  department   **/
    public String getDepartment() {
        return department;
    }
 
    /**   部门  department   **/
    public void setDepartment(String department) {
        this.department = department == null ? null : department.trim();
    }
 
    /**   职务  job   **/
    public String getJob() {
        return job;
    }
 
    /**   职务  job   **/
    public void setJob(String job) {
        this.job = job == null ? null : job.trim();
    }
 
    /**   创建人  createdby   **/
    public String getCreatedby() {
        return createdby;
    }
 
    /**   创建人  createdby   **/
    public void setCreatedby(String createdby) {
        this.createdby = createdby == null ? null : createdby.trim();
    }
 
    /**   创建时间  createddate   **/
    public Date getCreateddate() {
        return createddate;
    }
 
    /**   创建时间  createddate   **/
    public void setCreateddate(Date createddate) {
        this.createddate = createddate;
    }
 
    /**   更新人  lastmodifiedby   **/
    public String getLastmodifiedby() {
        return lastmodifiedby;
    }
 
    /**   更新人  lastmodifiedby   **/
    public void setLastmodifiedby(String lastmodifiedby) {
        this.lastmodifiedby = lastmodifiedby == null ? null : lastmodifiedby.trim();
    }
 
    /**   更新时间  lastmodifieddate   **/
    public Date getLastmodifieddate() {
        return lastmodifieddate;
    }
 
    /**   更新时间  lastmodifieddate   **/
    public void setLastmodifieddate(Date lastmodifieddate) {
        this.lastmodifieddate = lastmodifieddate;
    }
 
    /**   省份  province   **/
    public String getProvince() {
        return province;
    }
 
    /**   省份  province   **/
    public void setProvince(String province) {
        this.province = province == null ? null : province.trim();
    }
 
    /**   城市  city   **/
    public String getCity() {
        return city;
    }
 
    /**   城市  city   **/
    public void setCity(String city) {
        this.city = city == null ? null : city.trim();
    }
 
    /**   区县  area   **/
    public String getArea() {
        return area;
    }
 
    /**   区县  area   **/
    public void setArea(String area) {
        this.area = area == null ? null : area.trim();
    }
 
    /**   乡镇  town   **/
    public String getTown() {
        return town;
    }
 
    /**   乡镇  town   **/
    public void setTown(String town) {
        this.town = town == null ? null : town.trim();
    }
 
    /**   社区  community   **/
    public String getCommunity() {
        return community;
    }
 
    /**   社区  community   **/
    public void setCommunity(String community) {
        this.community = community == null ? null : community.trim();
    }
 
    /**   所属企业id  companyid   **/
    public Long getCompanyid() {
        return companyid;
    }
 
    /**   所属企业id  companyid   **/
    public void setCompanyid(Long companyid) {
        this.companyid = companyid;
    }
 
    /**   状态  status   **/
    public Byte getStatus() {
        return status;
    }
 
    /**   状态  status   **/
    public void setStatus(Byte status) {
        this.status = status;
    }
 
    /**   到期时间  expiredate   **/
    public Date getExpiredate() {
        return expiredate;
    }
 
    /**   到期时间  expiredate   **/
    public void setExpiredate(Date expiredate) {
        this.expiredate = expiredate;
    }
 
    /**   是否删除  isdel   **/
    public Byte getIsdel() {
        return isdel;
    }
 
    /**   是否删除  isdel   **/
    public void setIsdel(Byte isdel) {
        this.isdel = isdel;
    }
 
    /**   是否销售端  issale   **/
    public Byte getIssale() {
        return issale;
    }
 
    /**   是否销售端  issale   **/
    public void setIssale(Byte issale) {
        this.issale = issale;
    }
 
    public Integer getType() {
        return type;
    }
 
    public void setType(Integer type) {
        this.type = type;
    }
 
    public String getCompanynumber() {
        return companynumber;
    }
 
    public void setCompanynumber(String companynumber) {
        this.companynumber = companynumber;
    }
 
    public String getCode() {
        return code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
 
    public Date getDeadline() {
        return deadline;
    }
 
    public void setDeadline(Date deadline) {
        this.deadline = deadline;
    }
}