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
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
package com.shlanbao.tzsc.base.mapping;
 
import java.util.Date;
 
import com.shlanbao.tzsc.utils.extents.DateFmtAnnotation;
 
/**
 * EqmCheckcatPlan entity. @author MyEclipse Persistence Tools
 */
 
public class EqmCheckcatPlan{
 
    // Fields
 
    private String id;
    private SysUser sysUserByDutyPeopleId;
    private SysUser sysUserByCreateId;//创建人
    private MdEquipment mdEquipment;//设备
    private MdShift mdShift;//班次
    private EqmCheckcatPlan eqmLubricatPlan;
    private String planNo;//计划编号
    private String planName;//计划名称
    private String scheduleStrDate;//计划开始时间
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd")
    private Date scheduleDate;//计划开始时间
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd")
    private Date scheduleEndDate;//计划结束时间
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
    private Date startTime;//实际开始时间
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
    private Date endTime;//实际结束时间
    private String maintenanceLength;//计划时长
    private String maintenanceContent;//计划内容
    private String planner;//制单人
    private String maintenanceType;//计划类型,轮保类别
    private String locationCode;//车间代码
    private String wheelCoverType;//工单类型
    private String wheelParts;//轮保部件
    private String period;//周期
    private String remindCycle;//提醒周期
    private String dutyPeopleName;//责任人id
    private Date endMaintainDate;//最后维修日期
    private String del;//是否删除
    private Date createDate;//创建日期
    private String mdMatId;//设备ID
    private String auditUserId;//审核人ID
    private String auditTime;//审核时间
    private String ratifyUserId;//批准人ID
    private String ratifyTime;//批准时间
    private String attr1;
    private String attr2;
    private String attr3;
    private String attr4;
    
    private SysUser czgUserId;//操作工ID
    private SysUser lbgUserId;//轮保工ID
    private SysUser shgUserId;//审核工ID
    private SysUser endUserId;//最后完成人ID
    private String     czgDate;//操作工操作时间
    private String     lbgDate;//轮保工操作时间
    private String     shgDate;//审核工操作时间
    private String     isCzgFinsh;//操作工是否完成
    private String     isLbgFinsh;//轮保工是否完成
    private String     isShgFinsh;//审核工是否完成
    private String modifyDate;//修改时间
    
    private String checkNumber;//维修次数
    private String isZgCheck;//是否主管点检
    // Constructors
 
    /** default constructor */
    public EqmCheckcatPlan() {
    }
    
    public EqmCheckcatPlan(EqmCheckcatPlan eqmLubricatPlan){
        this.eqmLubricatPlan = eqmLubricatPlan;
    }
    
   public EqmCheckcatPlan(String id) {
        super();
        this.id = id;
    }
    /** full constructor */
    public EqmCheckcatPlan(SysUser sysUserByDutyPeopleId,
            SysUser sysUserByCreateId, MdEquipment mdEquipment,
            MdShift mdShift, String planNo, String planName,
            Date scheduleDate,Date scheduleEndDate, Date startTime, Date endTime,
            String maintenanceLength, String maintenanceContent,
            String planner, String maintenanceType, String locationCode,
            String wheelCoverType, String wheelParts, String period,
            String remindCycle, String dutyPeopleName,
            Date endMaintainDate, String del, Date createDate,
            String attr1, String attr2, String attr3, String attr4) {
        this.sysUserByDutyPeopleId = sysUserByDutyPeopleId;
        this.sysUserByCreateId = sysUserByCreateId;
        this.mdEquipment = mdEquipment;
        this.mdShift = mdShift;
        this.planNo = planNo;
        this.planName = planName;
        this.scheduleDate = scheduleDate;
        this.scheduleEndDate = scheduleEndDate;
        this.startTime = startTime;
        this.endTime = endTime;
        this.maintenanceLength = maintenanceLength;
        this.maintenanceContent = maintenanceContent;
        this.planner = planner;
        this.maintenanceType = maintenanceType;
        this.locationCode = locationCode;
        this.wheelCoverType = wheelCoverType;
        this.wheelParts = wheelParts;
        this.period = period;
        this.remindCycle = remindCycle;
        this.dutyPeopleName = dutyPeopleName;
        this.endMaintainDate = endMaintainDate;
        this.del = del;
        this.createDate = createDate;
        this.attr1 = attr1;
        this.attr2 = attr2;
        this.attr3 = attr3;
        this.attr4 = attr4;
    }
 
    // Property accessors
 
    public String getId() {
        return this.id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public SysUser getSysUserByDutyPeopleId() {
        return this.sysUserByDutyPeopleId;
    }
 
    public void setSysUserByDutyPeopleId(SysUser sysUserByDutyPeopleId) {
        this.sysUserByDutyPeopleId = sysUserByDutyPeopleId;
    }
 
    public SysUser getSysUserByCreateId() {
        return this.sysUserByCreateId;
    }
 
    public void setSysUserByCreateId(SysUser sysUserByCreateId) {
        this.sysUserByCreateId = sysUserByCreateId;
    }
 
    public MdEquipment getMdEquipment() {
        return this.mdEquipment;
    }
 
    public void setMdEquipment(MdEquipment mdEquipment) {
        this.mdEquipment = mdEquipment;
    }
 
    public MdShift getMdShift() {
        return this.mdShift;
    }
 
    public void setMdShift(MdShift mdShift) {
        this.mdShift = mdShift;
    }
    
    public EqmCheckcatPlan getEqmLubricatPlan() {
        return eqmLubricatPlan;
    }
 
    public void setEqmLubricatPlan(EqmCheckcatPlan eqmLubricatPlan) {
        this.eqmLubricatPlan = eqmLubricatPlan;
    }
 
    public String getPlanNo() {
        return this.planNo;
    }
 
    public void setPlanNo(String planNo) {
        this.planNo = planNo;
    }
 
    public String getPlanName() {
        return this.planName;
    }
 
    public void setPlanName(String planName) {
        this.planName = planName;
    }
 
    public Date getScheduleDate() {
        return this.scheduleDate;
    }
 
    public void setScheduleDate(Date scheduleDate) {
        this.scheduleDate = scheduleDate;
    }
 
    public Date getScheduleEndDate() {
        return scheduleEndDate;
    }
 
    public void setScheduleEndDate(Date scheduleEndDate) {
        this.scheduleEndDate = scheduleEndDate;
    }
 
    public Date getStartTime() {
        return this.startTime;
    }
 
    public void setStartTime(Date startTime) {
        this.startTime = startTime;
    }
 
    public Date getEndTime() {
        return this.endTime;
    }
 
    public void setEndTime(Date endTime) {
        this.endTime = endTime;
    }
 
    public String getMaintenanceLength() {
        return this.maintenanceLength;
    }
 
    public void setMaintenanceLength(String maintenanceLength) {
        this.maintenanceLength = maintenanceLength;
    }
 
    public String getMaintenanceContent() {
        return this.maintenanceContent;
    }
 
    public void setMaintenanceContent(String maintenanceContent) {
        this.maintenanceContent = maintenanceContent;
    }
 
    public String getPlanner() {
        return this.planner;
    }
 
    public void setPlanner(String planner) {
        this.planner = planner;
    }
 
    public String getMaintenanceType() {
        return this.maintenanceType;
    }
 
    public void setMaintenanceType(String maintenanceType) {
        this.maintenanceType = maintenanceType;
    }
 
    public String getLocationCode() {
        return this.locationCode;
    }
 
    public void setLocationCode(String locationCode) {
        this.locationCode = locationCode;
    }
 
    public String getWheelCoverType() {
        return this.wheelCoverType;
    }
 
    public void setWheelCoverType(String wheelCoverType) {
        this.wheelCoverType = wheelCoverType;
    }
 
    public String getWheelParts() {
        return this.wheelParts;
    }
 
    public void setWheelParts(String wheelParts) {
        this.wheelParts = wheelParts;
    }
 
    public String getPeriod() {
        return this.period;
    }
 
    public void setPeriod(String period) {
        this.period = period;
    }
 
    public String getRemindCycle() {
        return this.remindCycle;
    }
 
    public void setRemindCycle(String remindCycle) {
        this.remindCycle = remindCycle;
    }
 
    public String getDutyPeopleName() {
        return this.dutyPeopleName;
    }
 
    public void setDutyPeopleName(String dutyPeopleName) {
        this.dutyPeopleName = dutyPeopleName;
    }
 
    public Date getEndMaintainDate() {
        return this.endMaintainDate;
    }
 
    public void setEndMaintainDate(Date endMaintainDate) {
        this.endMaintainDate = endMaintainDate;
    }
 
    public String getDel() {
        return this.del;
    }
 
    public void setDel(String del) {
        this.del = del;
    }
 
    public Date getCreateDate() {
        return this.createDate;
    }
 
    public void setCreateDate(Date createDate) {
        this.createDate = createDate;
    }
 
    public String getAttr1() {
        return this.attr1;
    }
 
    public void setAttr1(String attr1) {
        this.attr1 = attr1;
    }
 
    public String getAttr2() {
        return this.attr2;
    }
 
    public void setAttr2(String attr2) {
        this.attr2 = attr2;
    }
 
    public String getAttr3() {
        return this.attr3;
    }
 
    public void setAttr3(String attr3) {
        this.attr3 = attr3;
    }
 
    public String getAttr4() {
        return this.attr4;
    }
 
    public void setAttr4(String attr4) {
        this.attr4 = attr4;
    }
 
    public String getMdMatId() {
        return mdMatId;
    }
 
    public void setMdMatId(String mdMatId) {
        this.mdMatId = mdMatId;
    }
 
    public String getAuditUserId() {
        return auditUserId;
    }
 
    public void setAuditUserId(String auditUserId) {
        this.auditUserId = auditUserId;
    }
 
    public String getAuditTime() {
        return auditTime;
    }
 
    public void setAuditTime(String auditTime) {
        this.auditTime = auditTime;
    }
 
    public String getRatifyUserId() {
        return ratifyUserId;
    }
 
    public void setRatifyUserId(String ratifyUserId) {
        this.ratifyUserId = ratifyUserId;
    }
 
    public String getRatifyTime() {
        return ratifyTime;
    }
 
    public void setRatifyTime(String ratifyTime) {
        this.ratifyTime = ratifyTime;
    }
 
    public String getCzgDate() {
        return czgDate;
    }
 
    public void setCzgDate(String czgDate) {
        this.czgDate = czgDate;
    }
 
    public String getLbgDate() {
        return lbgDate;
    }
 
    public void setLbgDate(String lbgDate) {
        this.lbgDate = lbgDate;
    }
 
    public SysUser getCzgUserId() {
        return czgUserId;
    }
 
    public void setCzgUserId(SysUser czgUserId) {
        this.czgUserId = czgUserId;
    }
 
    public SysUser getLbgUserId() {
        return lbgUserId;
    }
 
    public void setLbgUserId(SysUser lbgUserId) {
        this.lbgUserId = lbgUserId;
    }
 
    public String getScheduleStrDate() {
        return scheduleStrDate;
    }
 
    public void setScheduleStrDate(String scheduleStrDate) {
        this.scheduleStrDate = scheduleStrDate;
    }
 
    public String getIsCzgFinsh() {
        return isCzgFinsh;
    }
 
    public void setIsCzgFinsh(String isCzgFinsh) {
        this.isCzgFinsh = isCzgFinsh;
    }
 
    public String getIsLbgFinsh() {
        return isLbgFinsh;
    }
 
    public void setIsLbgFinsh(String isLbgFinsh) {
        this.isLbgFinsh = isLbgFinsh;
    }
 
    public String getIsShgFinsh() {
        return isShgFinsh;
    }
 
    public void setIsShgFinsh(String isShgFinsh) {
        this.isShgFinsh = isShgFinsh;
    }
 
    public SysUser getShgUserId() {
        return shgUserId;
    }
 
    public void setShgUserId(SysUser shgUserId) {
        this.shgUserId = shgUserId;
    }
 
    public String getShgDate() {
        return shgDate;
    }
 
    public void setShgDate(String shgDate) {
        this.shgDate = shgDate;
    }
 
    public String getModifyDate() {
        return modifyDate;
    }
 
    public void setModifyDate(String modifyDate) {
        this.modifyDate = modifyDate;
    }
 
    public SysUser getEndUserId() {
        return endUserId;
    }
 
    public void setEndUserId(SysUser endUserId) {
        this.endUserId = endUserId;
    }
 
    public String getCheckNumber() {
        return checkNumber;
    }
 
    public void setCheckNumber(String checkNumber) {
        this.checkNumber = checkNumber;
    }
 
    public String getIsZgCheck() {
        return isZgCheck;
    }
 
    public void setIsZgCheck(String isZgCheck) {
        this.isZgCheck = isZgCheck;
    }
    
    
    
}