zhuguifei
2026-03-10 58402bd5e762361363a0f7d7907153c77dbb819f
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
package com.shlanbao.tzsc.pms.equ.sbglplan.beans;
 
import com.shlanbao.tzsc.utils.extents.DateFmtAnnotation;
 
public class EquCheckcatPlanBean {
    private String id;//计划主键ID
    private String planId;//计划主键ID 这里2个都是
    private String eqmId;//设备id
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd")
    private String scheduleEndDate;
    private String maintenanceLength;
    private String locationCode;
    private String wheelCoverTypeDes;
    private String wheelParts;
    private String period;
    private String remindCycle;
    private String dutyPeopleId;
    private String dutyPeopleName;
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
    private String endMaintainDate;
    private String planCode;//计划编号
    private String planName;//计划名称
    private String equipmentLxId;//设备类型
    private String equipmentLxName;
    private String equipmentXhId;//设备型号
    private String equipmentXhName;
    private String equipmentId;//设备ID
    private String equipmentName;
    private String maintenanceType;//轮保类别
    private String equipmentMinute;//轮保时长
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd")
    private String scheduleDate;//轮保日期
    private String matId;//牌号
    private String mdShiftId;//班次
    private String maintenanceContent;//备注
    private String metcId;//轮保部位;绑定的 项目大类(父节点,根据该节点可以查询出说有 保养项)
    private String wheelCoverType;//工单状态
    private String del;
    private String planner;//制定人
    
    private String eqmName;
    private String mdShiftName;
    private String planNo;//编号
    private String date1;
    private String date2;
    private String checkNumber;//维修次数
    private String isZgCheck;//是否主管点检
    
    
    public String getPlanId() {
        return planId;
    }
    public void setPlanId(String planId) {
        this.planId = planId;
    }
    public String getPlanCode() {
        return planCode;
    }
    public void setPlanCode(String planCode) {
        this.planCode = planCode;
    }
    public String getPlanName() {
        return planName;
    }
    public void setPlanName(String planName) {
        this.planName = planName;
    }
    public String getEquipmentLxId() {
        return equipmentLxId;
    }
    public void setEquipmentLxId(String equipmentLxId) {
        this.equipmentLxId = equipmentLxId;
    }
    public String getEquipmentLxName() {
        return equipmentLxName;
    }
    public void setEquipmentLxName(String equipmentLxName) {
        this.equipmentLxName = equipmentLxName;
    }
    public String getEquipmentXhId() {
        return equipmentXhId;
    }
    public void setEquipmentXhId(String equipmentXhId) {
        this.equipmentXhId = equipmentXhId;
    }
    public String getEquipmentXhName() {
        return equipmentXhName;
    }
    public void setEquipmentXhName(String equipmentXhName) {
        this.equipmentXhName = equipmentXhName;
    }
    public String getEquipmentId() {
        return equipmentId;
    }
    public void setEquipmentId(String equipmentId) {
        this.equipmentId = equipmentId;
    }
    public String getEquipmentName() {
        return equipmentName;
    }
    public void setEquipmentName(String equipmentName) {
        this.equipmentName = equipmentName;
    }
    public String getMaintenanceType() {
        return maintenanceType;
    }
    public void setMaintenanceType(String maintenanceType) {
        this.maintenanceType = maintenanceType;
    }
    public String getEquipmentMinute() {
        return equipmentMinute;
    }
    public void setEquipmentMinute(String equipmentMinute) {
        this.equipmentMinute = equipmentMinute;
    }
    public String getScheduleDate() {
        return scheduleDate;
    }
    public void setScheduleDate(String scheduleDate) {
        this.scheduleDate = scheduleDate;
    }
    public String getMatId() {
        return matId;
    }
    public void setMatId(String matId) {
        this.matId = matId;
    }
    public String getMdShiftId() {
        return mdShiftId;
    }
    public void setMdShiftId(String mdShiftId) {
        this.mdShiftId = mdShiftId;
    }
    public String getMaintenanceContent() {
        return maintenanceContent;
    }
    public void setMaintenanceContent(String maintenanceContent) {
        this.maintenanceContent = maintenanceContent;
    }
    public String getMetcId() {
        return metcId;
    }
    public void setMetcId(String metcId) {
        this.metcId = metcId;
    }
    public String getWheelCoverType() {
        return wheelCoverType;
    }
    public void setWheelCoverType(String wheelCoverType) {
        this.wheelCoverType = wheelCoverType;
    }
    public String getDel() {
        return del;
    }
    public void setDel(String del) {
        this.del = del;
    }
    public String getPlanner() {
        return planner;
    }
    public void setPlanner(String planner) {
        this.planner = planner;
    }
    public String getPlanNo() {
        return planNo;
    }
    public void setPlanNo(String planNo) {
        this.planNo = planNo;
    }
    public String getDate1() {
        return date1;
    }
    public void setDate1(String date1) {
        this.date1 = date1;
    }
    public String getDate2() {
        return date2;
    }
    public void setDate2(String date2) {
        this.date2 = date2;
    }
    public String getEqmName() {
        return eqmName;
    }
    public void setEqmName(String eqmName) {
        this.eqmName = eqmName;
    }
    public String getMdShiftName() {
        return mdShiftName;
    }
    public void setMdShiftName(String mdShiftName) {
        this.mdShiftName = mdShiftName;
    }
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
    public String getEqmId() {
        return eqmId;
    }
    public void setEqmId(String eqmId) {
        this.eqmId = eqmId;
    }
    public String getScheduleEndDate() {
        return scheduleEndDate;
    }
    public void setScheduleEndDate(String scheduleEndDate) {
        this.scheduleEndDate = scheduleEndDate;
    }
    public String getMaintenanceLength() {
        return maintenanceLength;
    }
    public void setMaintenanceLength(String maintenanceLength) {
        this.maintenanceLength = maintenanceLength;
    }
    public String getLocationCode() {
        return locationCode;
    }
    public void setLocationCode(String locationCode) {
        this.locationCode = locationCode;
    }
    public String getWheelCoverTypeDes() {
        return wheelCoverTypeDes;
    }
    public void setWheelCoverTypeDes(String wheelCoverTypeDes) {
        this.wheelCoverTypeDes = wheelCoverTypeDes;
    }
    public String getWheelParts() {
        return wheelParts;
    }
    public void setWheelParts(String wheelParts) {
        this.wheelParts = wheelParts;
    }
    public String getPeriod() {
        return period;
    }
    public void setPeriod(String period) {
        this.period = period;
    }
    public String getRemindCycle() {
        return remindCycle;
    }
    public void setRemindCycle(String remindCycle) {
        this.remindCycle = remindCycle;
    }
    public String getDutyPeopleId() {
        return dutyPeopleId;
    }
    public void setDutyPeopleId(String dutyPeopleId) {
        this.dutyPeopleId = dutyPeopleId;
    }
    public String getDutyPeopleName() {
        return dutyPeopleName;
    }
    public void setDutyPeopleName(String dutyPeopleName) {
        this.dutyPeopleName = dutyPeopleName;
    }
    public String getEndMaintainDate() {
        return endMaintainDate;
    }
    public void setEndMaintainDate(String endMaintainDate) {
        this.endMaintainDate = endMaintainDate;
    }
    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;
    }
    
}