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
package com.shlanbao.tzsc.data.runtime.bean;
 
public class FilterData {
    private String equipmentCode;//设备编号
    private String equipmentType;//设备型号
    private String equipmentEdcs;//设备名称
    private String workorderCode;//工单code
    private String matName;//牌号
    private Double planQty;//计划产量
    private String unit;
    private String planStim;//计划开始时间
    private String planEtim;//计划结束时间
    private String bthCode;//批次号
    private String stim;//开始时间
    private String teamName;//班组
    private String shiftName;//班次
    private Double zpQty;//装盘机
    
    /*辅料*/
    private Double panzhiBzdh;//盘纸标准单耗
    private Double panzhiEuval;//盘纸报警
    
    //实时数据部分
    private Integer online;//网络状态  0异常,1正常
    private Double qty;//产量
    private Double badQty;//剔除产量
    
    private Double panzhiVal;//盘纸消耗
    
    
    private Double runTime;//运行时间
    private Double stopTime;//停机时间
    private Integer stopTimes;//停机次数
    private Integer speed;//车速
    
    
    
    public FilterData(String equipmentCode, Double zpQty, Integer online, Double qty, Double badQty, Double panzhiVal,
             Double runTime, Double stopTime, Integer stopTimes, Integer speed) {
        super();
        this.equipmentCode = equipmentCode;
        this.zpQty = zpQty;
        this.online = online;
        this.qty = qty;
        this.badQty = badQty;
        this.panzhiVal = panzhiVal;
        this.runTime = runTime;
        this.stopTime = stopTime;
        this.stopTimes = stopTimes;
        this.speed = speed;
    }
    
    
    public FilterData() {
        super();
        // TODO Auto-generated constructor stub
    }
 
 
    public String getTeamName() {
        return teamName;
    }
 
 
    public void setTeamName(String teamName) {
        this.teamName = teamName;
    }
 
 
    public String getShiftName() {
        return shiftName;
    }
 
 
    public void setShiftName(String shiftName) {
        this.shiftName = shiftName;
    }
 
 
    public Double getZpQty() {
        return zpQty;
    }
    public void setZpQty(Double zpQty) {
        this.zpQty = zpQty;
    }
    public String getEquipmentCode() {
        return equipmentCode;
    }
    public void setEquipmentCode(String equipmentCode) {
        this.equipmentCode = equipmentCode;
    }
    public String getEquipmentType() {
        return equipmentType;
    }
    public void setEquipmentType(String equipmentType) {
        this.equipmentType = equipmentType;
    }
    public String getEquipmentEdcs() {
        return equipmentEdcs;
    }
    public void setEquipmentEdcs(String equipmentEdcs) {
        this.equipmentEdcs = equipmentEdcs;
    }
    public String getWorkorderCode() {
        return workorderCode;
    }
    public void setWorkorderCode(String workorderCode) {
        this.workorderCode = workorderCode;
    }
    public String getMatName() {
        return matName;
    }
    public void setMatName(String matName) {
        this.matName = matName;
    }
    public Double getPlanQty() {
        return planQty;
    }
    public void setPlanQty(Double planQty) {
        this.planQty = planQty;
    }
    public String getUnit() {
        return unit;
    }
    public void setUnit(String unit) {
        this.unit = unit;
    }
    public String getPlanStim() {
        return planStim;
    }
    public void setPlanStim(String planStim) {
        this.planStim = planStim;
    }
    public String getPlanEtim() {
        return planEtim;
    }
    public void setPlanEtim(String planEtim) {
        this.planEtim = planEtim;
    }
    public String getBthCode() {
        return bthCode;
    }
    public void setBthCode(String bthCode) {
        this.bthCode = bthCode;
    }
    public String getStim() {
        return stim;
    }
    public void setStim(String stim) {
        this.stim = stim;
    }
    public Double getPanzhiBzdh() {
        return panzhiBzdh;
    }
    public void setPanzhiBzdh(Double panzhiBzdh) {
        this.panzhiBzdh = panzhiBzdh;
    }
    public Double getPanzhiEuval() {
        return panzhiEuval;
    }
    public void setPanzhiEuval(Double panzhiEuval) {
        this.panzhiEuval = panzhiEuval;
    }
    public Integer getOnline() {
        return online;
    }
    public void setOnline(Integer online) {
        this.online = online;
    }
    public Double getQty() {
        return qty;
    }
    public void setQty(Double qty) {
        this.qty = qty;
    }
    public Double getBadQty() {
        return badQty;
    }
    public void setBadQty(Double badQty) {
        this.badQty = badQty;
    }
    public Double getPanzhiVal() {
        return panzhiVal;
    }
    public void setPanzhiVal(Double panzhiVal) {
        this.panzhiVal = panzhiVal;
    }
    public Double getRunTime() {
        return runTime;
    }
    public void setRunTime(Double runTime) {
        this.runTime = runTime;
    }
    public Double getStopTime() {
        return stopTime;
    }
    public void setStopTime(Double stopTime) {
        this.stopTime = stopTime;
    }
    public Integer getStopTimes() {
        return stopTimes;
    }
    public void setStopTimes(Integer stopTimes) {
        this.stopTimes = stopTimes;
    }
    public Integer getSpeed() {
        return speed;
    }
    public void setSpeed(Integer speed) {
        this.speed = speed;
    }
}