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
package com.shlanbao.tzsc.pms.sch.workorder.beans;
 
import java.util.List;
 
/**
 * 工单实际反馈
 *
 * */
public class MesWorkOrderBean {
    private String id;
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
    private String code; //工单编号
    private String shift;//班次
    private String team;//班组
    private String real_stim; //实际开始时间
    private String real_etim; //实际结束时间
 
    private List<MesMdMatBean> listFl;//辅料
    private String matName;//牌号名称
    private Double output;//产量
    private String eqpCode;//MES设备code
    private Integer downtimeTimes;//停机次数
    private String downtimeDuration;//停机时间
 
    private Double yzQuantity;  // 烟支产量
 
    public Double getYzQuantity() {
        return yzQuantity;
    }
 
    public void setYzQuantity(Double yzQuantity) {
        this.yzQuantity = yzQuantity;
    }
 
    public Double getXhQuantity() {
        return xhQuantity;
    }
 
    public void setXhQuantity(Double xhQuantity) {
        this.xhQuantity = xhQuantity;
    }
 
    public Double getThQuantity() {
        return thQuantity;
    }
 
    public void setThQuantity(Double thQuantity) {
        this.thQuantity = thQuantity;
    }
 
    private Double xhQuantity;  // 小盒产量
    private Double thQuantity;  // 条盒产量
 
 
    public String getEqpCode() {
        return eqpCode;
    }
    public void setEqpCode(String eqpCode) {
        this.eqpCode = eqpCode;
    }
    public String getCode() {
        return code;
    }
    public void setCode(String code) {
        this.code = code;
    }
    public String getShift() {
        return shift;
    }
    public void setShift(String shift) {
        this.shift = shift;
    }
    public String getTeam() {
        return team;
    }
    public void setTeam(String team) {
        this.team = team;
    }
    public String getReal_stim() {
        return real_stim;
    }
    public void setReal_stim(String real_stim) {
        this.real_stim = real_stim;
    }
    public String getReal_etim() {
        return real_etim;
    }
    public void setReal_etim(String real_etim) {
        this.real_etim = real_etim;
    }
    public List<MesMdMatBean> getListFl() {
        return listFl;
    }
    public void setListFl(List<MesMdMatBean> listFl) {
        this.listFl = listFl;
    }
    public String getMatName() {
        return matName;
    }
    public void setMatName(String matName) {
        this.matName = matName;
    }
    public Double getOutput() {
        return output;
    }
    public void setOutput(Double output) {
        this.output = output;
    }
    public Integer getDowntimeTimes() {
        return downtimeTimes;
    }
    public void setDowntimeTimes(Integer downtimeTimes) {
        this.downtimeTimes = downtimeTimes;
    }
    public String getDowntimeDuration() {
        return downtimeDuration;
    }
    public void setDowntimeDuration(String downtimeDuration) {
        this.downtimeDuration = downtimeDuration;
    }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
}