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
package com.shlanbao.tzsc.base.mapping;
 
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
 
/**
 * MdEquipment entity. @author MyEclipse Persistence Tools
 */
 
public class MdEquipment implements java.io.Serializable {
 
    // Fields
 
    private String id;
    private String mesEqpCode;//mes系统设备code
    private MdEqpType mdEqpType;
    private MdWorkshop mdWorkshop;
    private String equipmentCode;
    private String equipmentName;
    private String equipmentDesc;
    private String workCenter;
    private String equipmentPosition;
    private Double ratedSpeed;
    private String rateSpeedUnit;
    private Double yieId;
    private String yieldUnit;
    private String enabled;
    private String fixedAssetNum;
    private String manufacturingNum;
    private String approvalNum;
    private String navicertNum;
    private String fixedAssetFlag;
    private String usingDepartment;
    private String createUserId;
    private String createUserName;
    private Date createTime;
    private Double vouchProduction;
    private String updateUser;
    private Date updateTime;
    private String del;
    private String attr1;
    private String attr2;
    private String attr3;
    private String attr4;
    private Set eqmMaintains = new HashSet(0);
    private Set eqmTroubles = new HashSet(0);
    private Set eqmWheelCovelPlans = new HashSet(0);
    private Set eqmResumes = new HashSet(0);
 
 
    private String winUname; //WCT登录的用户名
 
    public String getWinUname() {
        return winUname;
    }
 
    public void setWinUname(String winUname) {
        this.winUname = winUname;
    }
    // Constructors
 
    /** default constructor */
    public MdEquipment() {
    }
    
    public MdEquipment(String id) {
        this.id = id;
    }
 
    /** minimal constructor */
    public MdEquipment(MdEqpType mdEqpType) {
        this.mdEqpType = mdEqpType;
    }
 
    public String getMesEqpCode() {
        return mesEqpCode;
    }
 
    public void setMesEqpCode(String mesEqpCode) {
        this.mesEqpCode = mesEqpCode;
    }
 
    /** full constructor */
    public MdEquipment(MdEqpType mdEqpType, MdWorkshop mdWorkshop,String equipmentCode,
            String equipmentName, String equipmentDesc, String workChop,
            String workCenter, String equipmentPosition, Double ratedSpeed,
            String rateSpeedUnit, Double yieId, String yieldUnit,
            String enabled, String fixedAssetNum, String manufacturingNum,
            String approvalNum, String navicertNum, String fixedAssetFlag,
            String usingDepartment, String createUserId, String createUserName,
            Date createTime, String updateUser, Date updateTime,
            String del, String attr1, String attr2, String attr3, String attr4,
            Set eqmMaintains,  Set eqmTroubles,
            Set eqmWheelCovelPlans, Set eqmResumes) {
        this.mdEqpType = mdEqpType;
        this.mdWorkshop = mdWorkshop;
        this.equipmentCode = equipmentCode;
        this.equipmentName = equipmentName;
        this.equipmentDesc = equipmentDesc;
        this.workCenter = workCenter;
        this.equipmentPosition = equipmentPosition;
        this.ratedSpeed = ratedSpeed;
        this.rateSpeedUnit = rateSpeedUnit;
        this.yieId = yieId;
        this.yieldUnit = yieldUnit;
        this.enabled = enabled;
        this.fixedAssetNum = fixedAssetNum;
        this.manufacturingNum = manufacturingNum;
        this.approvalNum = approvalNum;
        this.navicertNum = navicertNum;
        this.fixedAssetFlag = fixedAssetFlag;
        this.usingDepartment = usingDepartment;
        this.createUserId = createUserId;
        this.createUserName = createUserName;
        this.createTime = createTime;
        this.updateUser = updateUser;
        this.updateTime = updateTime;
        this.del = del;
        this.attr1 = attr1;
        this.attr2 = attr2;
        this.attr3 = attr3;
        this.attr4 = attr4;
        this.eqmMaintains = eqmMaintains;
        this.eqmTroubles = eqmTroubles;
        this.eqmWheelCovelPlans = eqmWheelCovelPlans;
        this.eqmResumes = eqmResumes;
    }
 
    // Property accessors
 
    public String getId() {
        return this.id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public MdEqpType getMdEqpType() {
        return this.mdEqpType;
    }
 
    public void setMdEqpType(MdEqpType mdEqpType) {
        this.mdEqpType = mdEqpType;
    }
 
    public MdWorkshop getMdWorkshop() {
        return mdWorkshop;
    }
 
    public void setMdWorkshop(MdWorkshop mdWorkshop) {
        this.mdWorkshop = mdWorkshop;
    }
 
    public String getEquipmentCode() {
        return this.equipmentCode;
    }
 
    public void setEquipmentCode(String equipmentCode) {
        this.equipmentCode = equipmentCode;
    }
 
    public String getEquipmentName() {
        return this.equipmentName;
    }
 
    public void setEquipmentName(String equipmentName) {
        this.equipmentName = equipmentName;
    }
 
    public String getEquipmentDesc() {
        return this.equipmentDesc;
    }
 
    public void setEquipmentDesc(String equipmentDesc) {
        this.equipmentDesc = equipmentDesc;
    }
 
    public String getWorkCenter() {
        return this.workCenter;
    }
 
    public void setWorkCenter(String workCenter) {
        this.workCenter = workCenter;
    }
 
    public String getEquipmentPosition() {
        return this.equipmentPosition;
    }
 
    public void setEquipmentPosition(String equipmentPosition) {
        this.equipmentPosition = equipmentPosition;
    }
 
    public Double getRatedSpeed() {
        return this.ratedSpeed;
    }
 
    public void setRatedSpeed(Double ratedSpeed) {
        this.ratedSpeed = ratedSpeed;
    }
 
    public String getRateSpeedUnit() {
        return this.rateSpeedUnit;
    }
 
    public void setRateSpeedUnit(String rateSpeedUnit) {
        this.rateSpeedUnit = rateSpeedUnit;
    }
 
    public Double getYieId() {
        return this.yieId;
    }
 
    public void setYieId(Double yieId) {
        this.yieId = yieId;
    }
 
    public String getYieldUnit() {
        return this.yieldUnit;
    }
 
    public void setYieldUnit(String yieldUnit) {
        this.yieldUnit = yieldUnit;
    }
 
    public String getEnabled() {
        return this.enabled;
    }
 
    public void setEnabled(String enabled) {
        this.enabled = enabled;
    }
 
    public String getFixedAssetNum() {
        return this.fixedAssetNum;
    }
 
    public void setFixedAssetNum(String fixedAssetNum) {
        this.fixedAssetNum = fixedAssetNum;
    }
 
    public String getManufacturingNum() {
        return this.manufacturingNum;
    }
 
    public void setManufacturingNum(String manufacturingNum) {
        this.manufacturingNum = manufacturingNum;
    }
 
    public String getApprovalNum() {
        return this.approvalNum;
    }
 
    public void setApprovalNum(String approvalNum) {
        this.approvalNum = approvalNum;
    }
 
    public String getNavicertNum() {
        return this.navicertNum;
    }
 
    public void setNavicertNum(String navicertNum) {
        this.navicertNum = navicertNum;
    }
 
    public String getFixedAssetFlag() {
        return this.fixedAssetFlag;
    }
 
    public void setFixedAssetFlag(String fixedAssetFlag) {
        this.fixedAssetFlag = fixedAssetFlag;
    }
 
    public String getUsingDepartment() {
        return this.usingDepartment;
    }
 
    public void setUsingDepartment(String usingDepartment) {
        this.usingDepartment = usingDepartment;
    }
 
    public String getCreateUserId() {
        return this.createUserId;
    }
 
    public void setCreateUserId(String createUserId) {
        this.createUserId = createUserId;
    }
 
    public String getCreateUserName() {
        return this.createUserName;
    }
 
    public void setCreateUserName(String createUserName) {
        this.createUserName = createUserName;
    }
 
    public Date getCreateTime() {
        return this.createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public String getUpdateUser() {
        return this.updateUser;
    }
 
    public void setUpdateUser(String updateUser) {
        this.updateUser = updateUser;
    }
 
    public Date getUpdateTime() {
        return this.updateTime;
    }
 
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
 
    public String getDel() {
        return this.del;
    }
 
    public void setDel(String del) {
        this.del = del;
    }
 
    public Double getVouchProduction() {
        return vouchProduction;
    }
 
    public void setVouchProduction(Double vouchProduction) {
        this.vouchProduction = vouchProduction;
    }
 
    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 Set getEqmMaintains() {
        return this.eqmMaintains;
    }
 
    public void setEqmMaintains(Set eqmMaintains) {
        this.eqmMaintains = eqmMaintains;
    }
 
 
    public Set getEqmTroubles() {
        return this.eqmTroubles;
    }
 
    public void setEqmTroubles(Set eqmTroubles) {
        this.eqmTroubles = eqmTroubles;
    }
 
    public Set getEqmWheelCovelPlans() {
        return this.eqmWheelCovelPlans;
    }
 
    public void setEqmWheelCovelPlans(Set eqmWheelCovelPlans) {
        this.eqmWheelCovelPlans = eqmWheelCovelPlans;
    }
 
    public Set getEqmResumes() {
        return this.eqmResumes;
    }
 
    public void setEqmResumes(Set eqmResumes) {
        this.eqmResumes = eqmResumes;
    }
 
}