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
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
package com.shlanbao.tzsc.pms.sch.workorder.beans;
 
import com.shlanbao.tzsc.base.model.BaseEntity;
import com.shlanbao.tzsc.utils.extents.DateFmtAnnotation;
 
/**
 * 工单实体
 * @author Leejean
 * @create 2014年11月18日下午4:21:29
 */
public class WorkOrderBean extends BaseEntity {
    private String id;//id
    private String code;//工单号
    /**
     1: "卷烟机工单";
     2: "包装机工单";
     3: "封箱机工单";
     4: "成型机工单";
     */
    private Long type;//类型
    private String mat;//牌号
    private String matId;//牌号
    private String equipment;//
    private String equipmentId;
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd")
    private String date;//生产日期起
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd")
    private String date2;//生产日期止
    private String shift;//班次
    private String team;//班组
    private String shiftId;//班次
    private String teamId;//班组
 
    private String shiftTwoId;//班次
    private String teamTwoId;//班组
    private String shiftThreeId;//班次
    private String teamThreeId;//班组
 
    private String shiftName;//班次
    private String teamName;//班组
    private String shiftTwoName;//班次
    private String teamTwoName;//班组
    private String shiftThreeName;//班次
    private String teamThreeName;//班组
    private String matName; //牌号
 
 
    private Double qty;//计划产量
    private String unit;//单位
    private String unitId;//单位ID(新增生产实绩产量时需要同步工单计量单位)
    private String bth;//批次
    private Long isNew;//是否为新
    private Long prodType;//生产类型
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
    private String stim;//计划开始时间
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
    private String etim;//计划结束时间
    private String bomVersion;//bom版本号
    private String inspectionType;
    private String param;//区分过程检、巡检
    private String parameter;//区分反馈班长/质检员
    private String zxq; //用于区分是含水查询还是成品查询
    private Integer shiftnum;
    private String parameterSetRevision;
    private String eqpcode;  //设备code
    public String getEqpcode() {
        return eqpcode;
    }
 
    public void setEqpcode(String eqpcode) {
        this.eqpcode = eqpcode;
    }
 
 
 
 
 
    public String getZxq() {
        return zxq;
    }
 
    public void setZxq(String zxq) {
        this.zxq = zxq;
    }
 
    public String getParam() {
        return param;
    }
 
    public void setParam(String param) {
        this.param = param;
    }
    /**
     * 1,下发
     * 2,运行 -->运行时
     * 3,暂停 -->MES取消撤销工单时
     * 4,完成 -->工单完成,更新工单结束时间
     * 5,终止 -->错误的工单运行时,执行本操作删除生产实绩相关数据
     * 6,结束 -->工单已经反馈
     * 7,锁定 -->MES发起撤销时
     * 8,撤销 -->MES确定撤销时
     */
    private Long sts;//状态
    private Long isCheck;//是否审核
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
    private String checkTime;//审核时间
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
    private String realStim;//实际开始时间
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
    private String realEtim;//时间结束时间
    private Long runSeq;//运行次序
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
    private String recvTime;//接收工单时间
    private Long enable;//启用
    private Long del;//删除
    private String workshop;//车间
    public WorkOrderBean() {
        // TODO Auto-generated constructor stub
    }
 
    public String getInspectionType() {
        return inspectionType;
    }
 
    public void setInspectionType(String inspectionType) {
        this.inspectionType = inspectionType;
    }
 
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
    public String getUnit() {
        return unit;
    }
    public void setUnit(String unit) {
        this.unit = unit;
    }
    public String getEquipment() {
        return equipment;
    }
    public void setEquipment(String equipment) {
        this.equipment = equipment;
    }
    public String getTeam() {
        return team;
    }
    public void setTeam(String team) {
        this.team = team;
    }
 
    public String getParameter() {
        return parameter;
    }
 
    public void setParameter(String parameter) {
        this.parameter = parameter;
    }
 
    public String getShift() {
        return shift;
    }
    public void setShift(String shift) {
        this.shift = shift;
    }
    public String getMat() {
        return mat;
    }
    public void setMat(String mat) {
        this.mat = mat;
    }
    public String getCode() {
        return code;
    }
    public void setCode(String code) {
        this.code = code;
    }
    public String getBth() {
        return bth;
    }
    public void setBth(String bth) {
        this.bth = bth;
    }
    public Long getIsNew() {
        return isNew;
    }
    public void setIsNew(Long isNew) {
        this.isNew = isNew;
    }
    public Long getType() {
        return type;
    }
    public void setType(Long type) {
        this.type = type;
    }
    public Long getProdType() {
        return prodType;
    }
    public void setProdType(Long prodType) {
        this.prodType = prodType;
    }
    public Double getQty() {
        return qty;
    }
    public void setQty(Double qty) {
        this.qty = qty;
    }
    public String getDate() {
        return date;
    }
    public void setDate(String date) {
        this.date = date;
    }
    public String getStim() {
        return stim;
    }
    public void setStim(String stim) {
        this.stim = stim;
    }
    public String getEtim() {
        return etim;
    }
    public void setEtim(String etim) {
        this.etim = etim;
    }
    public String getBomVersion() {
        return bomVersion;
    }
    public void setBomVersion(String bomVersion) {
        this.bomVersion = bomVersion;
    }
    public Long getSts() {
        return sts;
    }
    public void setSts(Long sts) {
        this.sts = sts;
    }
    public Long getIsCheck() {
        return isCheck;
    }
    public void setIsCheck(Long isCheck) {
        this.isCheck = isCheck;
    }
    public String getCheckTime() {
        return checkTime;
    }
    public void setCheckTime(String checkTime) {
        this.checkTime = checkTime;
    }
    public String getRealStim() {
        return realStim;
    }
    public void setRealStim(String realStim) {
        this.realStim = realStim;
    }
    public String getRealEtim() {
        return realEtim;
    }
    public void setRealEtim(String realEtim) {
        this.realEtim = realEtim;
    }
    public Long getRunSeq() {
        return runSeq;
    }
    public void setRunSeq(Long runSeq) {
        this.runSeq = runSeq;
    }
    public String getRecvTime() {
        return recvTime;
    }
    public void setRecvTime(String recvTime) {
        this.recvTime = recvTime;
    }
    public Long getEnable() {
        return enable;
    }
    public void setEnable(Long enable) {
        this.enable = enable;
    }
    public Long getDel() {
        return del;
    }
    public void setDel(Long del) {
        this.del = del;
    }
    public String getWorkshop() {
        return workshop;
    }
    public void setWorkshop(String workshop) {
        this.workshop = workshop;
    }
    public String getUnitId() {
        return unitId;
    }
    public void setUnitId(String unitId) {
        this.unitId = unitId;
    }
    public String getMatId() {
        return matId;
    }
    public void setMatId(String matId) {
        this.matId = matId;
    }
    public String getShiftId() {
        return shiftId;
    }
    public void setShiftId(String shiftId) {
        this.shiftId = shiftId;
    }
    public String getTeamId() {
        return teamId;
    }
    public void setTeamId(String teamId) {
        this.teamId = teamId;
    }
    public String getEquipmentId() {
        return equipmentId;
    }
    public void setEquipmentId(String equipmentId) {
        this.equipmentId = equipmentId;
    }
    public String getShiftTwoId() {
        return shiftTwoId;
    }
    public void setShiftTwoId(String shiftTwoId) {
        this.shiftTwoId = shiftTwoId;
    }
    public String getTeamTwoId() {
        return teamTwoId;
    }
    public void setTeamTwoId(String teamTwoId) {
        this.teamTwoId = teamTwoId;
    }
    public String getShiftThreeId() {
        return shiftThreeId;
    }
    public void setShiftThreeId(String shiftThreeId) {
        this.shiftThreeId = shiftThreeId;
    }
    public String getTeamThreeId() {
        return teamThreeId;
    }
    public void setTeamThreeId(String teamThreeId) {
        this.teamThreeId = teamThreeId;
    }
    public String getShiftName() {
        return shiftName;
    }
    public void setShiftName(String shiftName) {
        this.shiftName = shiftName;
    }
    public String getTeamName() {
        return teamName;
    }
    public void setTeamName(String teamName) {
        this.teamName = teamName;
    }
    public String getShiftTwoName() {
        return shiftTwoName;
    }
    public void setShiftTwoName(String shiftTwoName) {
        this.shiftTwoName = shiftTwoName;
    }
    public String getTeamTwoName() {
        return teamTwoName;
    }
    public void setTeamTwoName(String teamTwoName) {
        this.teamTwoName = teamTwoName;
    }
    public String getShiftThreeName() {
        return shiftThreeName;
    }
    public void setShiftThreeName(String shiftThreeName) {
        this.shiftThreeName = shiftThreeName;
    }
    public String getTeamThreeName() {
        return teamThreeName;
    }
    public void setTeamThreeName(String teamThreeName) {
        this.teamThreeName = teamThreeName;
    }
 
    public Integer getShiftnum() {
        return shiftnum;
    }
 
    public void setShiftnum(Integer shiftnum) {
        this.shiftnum = shiftnum;
    }
 
    public String getParameterSetRevision() {
        return parameterSetRevision;
    }
 
    public void setParameterSetRevision(String parameterSetRevision) {
        this.parameterSetRevision = parameterSetRevision;
    }
 
    public String getDate2() {
        return date2;
    }
 
    public void setDate2(String date2) {
        this.date2 = date2;
    }
 
    public String getMatName() {
        return matName;
    }
 
    public void setMatName(String matName) {
        this.matName = matName;
    }
}