zhuguifei
2026-03-10 2c1fd10c6fbabb8e9f0e9f07fe66fb36c008e883
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
package com.shlanbao.tzsc.base.mapping;
 
import com.shlanbao.tzsc.base.model.BaseEntity;
 
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
 
/**
 * SysUser entity. @author MyEclipse Persistence Tools
 */
 
public class SysUser implements java.io.Serializable {
 
    // Fields
 
    private String id;
    private Date createDatetime;
    private Date modifyDatetime;
    private String name;
    private String pwd;
    private String eno;
    private String loginName;
    private String gender;
    private String phone;
    private String tel;
    private String fax;
    private String email;
    private Long enable;
    private Long del;
    private Long securityLevel;
    private Set schShiftExchgsForToUser = new HashSet(0);
    private Set sysUserRoles = new HashSet(0);
    private Set msgQmWarns = new HashSet(0);
    private Set schShiftExchgsForHoUser = new HashSet(0);
    private Set qmOutwards = new HashSet(0);
    private Set eqmLubricantMaintains = new HashSet(0);
    private Set qmSelfCheckFilters = new HashSet(0);
    private Set sysUserOrganizations = new HashSet(0);
    private Set qmSelfCheckCigarettes = new HashSet(0);
    private Set qmSelfCheckPackets = new HashSet(0);
    private Set eqmTroubles = new HashSet(0);
    private Set qmSelfCheckStrips = new HashSet(0);
    private Set qmSelfCheckCartonses = new HashSet(0);
    private Set sysFavorites = new HashSet(0);
 
    private Set msgInfosForApproval = new HashSet(0);
    private Set msgInfosForInitiator = new HashSet(0);
    private Set msgInfosForIssuer = new HashSet(0);
    //创建人姓名
    private String createUserName;
    //修改人姓名
    private String updateUserName;
 
    public String getCreateUserName() {
        return createUserName;
    }
 
    public void setCreateUserName(String createUserName) {
        this.createUserName = createUserName;
    }
 
    public String getUpdateUserName() {
        return updateUserName;
    }
 
    public void setUpdateUserName(String updateUserName) {
        this.updateUserName = updateUserName;
    }
// Constructors
 
    /** default constructor */
    public SysUser() {
    }
 
    public SysUser(String id) {
        super();
        this.id = id;
    }
 
    /** full constructor */
    public SysUser(Date createDatetime, Date modifyDatetime, String name,
            String pwd, String eno, String loginName, String gender,
            String phone, String tel, String fax, String email, Long enable,
            Long del, Long securityLevel, Set msgInfosForApproval,
            Set msgInfosForInitiator, Set msgInfosForIssuer,
            Set schShiftExchgsForToUser, Set sysUserRoles, Set msgQmWarns,
            Set schShiftExchgsForHoUser, Set qmOutwards,
            Set eqmLubricantMaintains, Set qmSelfCheckFilters,
            Set sysUserOrganizations, Set qmSelfCheckCigarettes,
            Set qmSelfCheckPackets, Set eqmTroubles, Set qmSelfCheckStrips,
            Set qmSelfCheckCartonses, Set sysFavorites) {
        this.msgInfosForApproval = msgInfosForApproval;
        this.msgInfosForInitiator = msgInfosForInitiator;
        this.msgInfosForIssuer = msgInfosForIssuer;
        this.createDatetime = createDatetime;
        this.modifyDatetime = modifyDatetime;
        this.name = name;
        this.pwd = pwd;
        this.eno = eno;
        this.loginName = loginName;
        this.gender = gender;
        this.phone = phone;
        this.tel = tel;
        this.fax = fax;
        this.email = email;
        this.enable = enable;
        this.del = del;
        this.securityLevel = securityLevel;
        this.schShiftExchgsForToUser = schShiftExchgsForToUser;
        this.sysUserRoles = sysUserRoles;
        this.msgQmWarns = msgQmWarns;
        this.schShiftExchgsForHoUser = schShiftExchgsForHoUser;
        this.qmOutwards = qmOutwards;
        this.eqmLubricantMaintains = eqmLubricantMaintains;
        this.qmSelfCheckFilters = qmSelfCheckFilters;
        this.sysUserOrganizations = sysUserOrganizations;
        this.qmSelfCheckCigarettes = qmSelfCheckCigarettes;
        this.qmSelfCheckPackets = qmSelfCheckPackets;
        this.eqmTroubles = eqmTroubles;
        this.qmSelfCheckStrips = qmSelfCheckStrips;
        this.qmSelfCheckCartonses = qmSelfCheckCartonses;
        this.sysFavorites = sysFavorites;
    }
 
    // Property accessors
 
    public String getId() {
        return this.id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public Date getCreateDatetime() {
        return this.createDatetime;
    }
 
    public void setCreateDatetime(Date createDatetime) {
        this.createDatetime = createDatetime;
    }
 
    public Date getModifyDatetime() {
        return this.modifyDatetime;
    }
 
    public void setModifyDatetime(Date modifyDatetime) {
        this.modifyDatetime = modifyDatetime;
    }
 
    public String getName() {
        return this.name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getPwd() {
        return this.pwd;
    }
 
    public void setPwd(String pwd) {
        this.pwd = pwd;
    }
 
    public String getEno() {
        return this.eno;
    }
 
    public void setEno(String eno) {
        this.eno = eno;
    }
 
    public String getLoginName() {
        return this.loginName;
    }
 
    public void setLoginName(String loginName) {
        this.loginName = loginName;
    }
 
    public String getGender() {
        return this.gender;
    }
 
    public void setGender(String gender) {
        this.gender = gender;
    }
 
    public String getPhone() {
        return this.phone;
    }
 
    public void setPhone(String phone) {
        this.phone = phone;
    }
 
    public String getTel() {
        return this.tel;
    }
 
    public void setTel(String tel) {
        this.tel = tel;
    }
 
    public String getFax() {
        return this.fax;
    }
 
    public void setFax(String fax) {
        this.fax = fax;
    }
 
    public String getEmail() {
        return this.email;
    }
 
    public void setEmail(String email) {
        this.email = email;
    }
 
    public Long getEnable() {
        return this.enable;
    }
 
    public void setEnable(Long enable) {
        this.enable = enable;
    }
 
    public Long getDel() {
        return this.del;
    }
 
    public void setDel(Long del) {
        this.del = del;
    }
 
    public Long getSecurityLevel() {
        return this.securityLevel;
    }
 
    public void setSecurityLevel(Long securityLevel) {
        this.securityLevel = securityLevel;
    }
 
    public Set getSchShiftExchgsForToUser() {
        return this.schShiftExchgsForToUser;
    }
 
    public void setSchShiftExchgsForToUser(Set schShiftExchgsForToUser) {
        this.schShiftExchgsForToUser = schShiftExchgsForToUser;
    }
 
    public Set getSysUserRoles() {
        return this.sysUserRoles;
    }
 
    public void setSysUserRoles(Set sysUserRoles) {
        this.sysUserRoles = sysUserRoles;
    }
 
    public Set getMsgQmWarns() {
        return this.msgQmWarns;
    }
 
    public void setMsgQmWarns(Set msgQmWarns) {
        this.msgQmWarns = msgQmWarns;
    }
 
    public Set getSchShiftExchgsForHoUser() {
        return this.schShiftExchgsForHoUser;
    }
 
    public void setSchShiftExchgsForHoUser(Set schShiftExchgsForHoUser) {
        this.schShiftExchgsForHoUser = schShiftExchgsForHoUser;
    }
 
    public Set getQmOutwards() {
        return this.qmOutwards;
    }
 
    public void setQmOutwards(Set qmOutwards) {
        this.qmOutwards = qmOutwards;
    }
 
    public Set getEqmLubricantMaintains() {
        return this.eqmLubricantMaintains;
    }
 
    public void setEqmLubricantMaintains(Set eqmLubricantMaintains) {
        this.eqmLubricantMaintains = eqmLubricantMaintains;
    }
 
    public Set getQmSelfCheckFilters() {
        return this.qmSelfCheckFilters;
    }
 
    public void setQmSelfCheckFilters(Set qmSelfCheckFilters) {
        this.qmSelfCheckFilters = qmSelfCheckFilters;
    }
 
    public Set getSysUserOrganizations() {
        return this.sysUserOrganizations;
    }
 
    public void setSysUserOrganizations(Set sysUserOrganizations) {
        this.sysUserOrganizations = sysUserOrganizations;
    }
 
    public Set getQmSelfCheckCigarettes() {
        return this.qmSelfCheckCigarettes;
    }
 
    public void setQmSelfCheckCigarettes(Set qmSelfCheckCigarettes) {
        this.qmSelfCheckCigarettes = qmSelfCheckCigarettes;
    }
 
    public Set getQmSelfCheckPackets() {
        return this.qmSelfCheckPackets;
    }
 
    public void setQmSelfCheckPackets(Set qmSelfCheckPackets) {
        this.qmSelfCheckPackets = qmSelfCheckPackets;
    }
 
    public Set getEqmTroubles() {
        return this.eqmTroubles;
    }
 
    public void setEqmTroubles(Set eqmTroubles) {
        this.eqmTroubles = eqmTroubles;
    }
 
    public Set getQmSelfCheckStrips() {
        return this.qmSelfCheckStrips;
    }
 
    public void setQmSelfCheckStrips(Set qmSelfCheckStrips) {
        this.qmSelfCheckStrips = qmSelfCheckStrips;
    }
 
    public Set getQmSelfCheckCartonses() {
        return this.qmSelfCheckCartonses;
    }
 
    public void setQmSelfCheckCartonses(Set qmSelfCheckCartonses) {
        this.qmSelfCheckCartonses = qmSelfCheckCartonses;
    }
 
    public Set getSysFavorites() {
        return this.sysFavorites;
    }
 
    public void setSysFavorites(Set sysFavorites) {
        this.sysFavorites = sysFavorites;
    }
 
    public Set getMsgInfosForApproval() {
        return this.msgInfosForApproval;
    }
 
    public void setMsgInfosForApproval(Set msgInfosForApproval) {
        this.msgInfosForApproval = msgInfosForApproval;
    }
 
    public Set getMsgInfosForInitiator() {
        return this.msgInfosForInitiator;
    }
 
    public void setMsgInfosForInitiator(Set msgInfosForInitiator) {
        this.msgInfosForInitiator = msgInfosForInitiator;
    }
 
    public Set getMsgInfosForIssuer() {
        return this.msgInfosForIssuer;
    }
 
    public void setMsgInfosForIssuer(Set msgInfosForIssuer) {
        this.msgInfosForIssuer = msgInfosForIssuer;
    }
}