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
package com.shlanbao.tzsc.base.mapping;
 
 
import java.io.Serializable;
import java.util.Date;
 
import javax.persistence.Entity;
 
 
/**
 * [功能说明]:交接班辅料信息表
 * 
 * @createTime 2015年10月26日08:27:22
 * @author wanchanghuang
 */
@Entity
public class StatShiftFLInfoBean implements Serializable{
    
    private long id;
    private String mec_id; //MD_EQP_CATEGORY表id   -卷烟机,包装机,封箱机等
    /**
     *  2    包装机组
        1    卷接机组
        3    装封箱机
        4    成型机组
        5    发射机组
        6    装盘机
        7    卸盘机
     * 
     * 
     * */
    private String eqp_id; //设备表ID
    private String team_id; //班组ID
    private String shift_id; //班次ID
    private String oid; //工单ID
    private String mat_id;//品牌ID
    private String mat_name; //品牌名称
    private Double qty; //产量
    private String handover_user_name; //交班人姓名
    private String handover_user_id;  //交班人ID
    private String receive_user_name; //接班人姓名
    private String receive_user_id;   //接班人ID
    private Date create_time; //创建时间
    private Date update_time; //最后修改时间
    private String update_user_id; //最后修改人
    private Integer zc_type; //仲裁类型    1-已仲裁  0-默认 
    private Integer fl_type; //辅料类型    1-实领辅料   2-虚领辅料  3-虚退辅料   0-没有交接班
    private Integer status; //状态   1-通过   0-默认
    private Double zj_pz;  //卷烟机-盘纸
    private Double zj_ssz; //卷烟机-水松纸
    private Double zj_lb;  //卷烟机-滤棒
    private Double zj_szy; //卷烟机-散支烟
    private Double zb_lbz; //包装机-铝箔纸    
    private Double zb_xhz; //包装机-小盒纸    
    private Double zb_xhm; //包装机-小盒膜    
    private Double zb_thz; //包装机-条盒纸    
    private Double zb_thm; //包装机-条盒膜    卡纸(硬盒)/封签(软盒)    
    private Double zb_kz;  //包装机-卡纸
    private Double zb_fq;  //包装机-封签
    private Double zb_lx1;  //包装机-拉线1
    private Double zb_lx2;  //包装机-拉线2
    private Double zl_pz;  //成型机-盘纸
    private Double zl_ss;  //成型机-丝束
    private Double zl_gy;  //成型机-甘油
    private Double yf_xp;  //封箱机-箱皮
    private Double yf_jd;  //封箱机-胶带
    private Double qt_bfy; //残烟-报废烟
    private Double qt_cc;  //残烟-吹车
    private Double qt_jy;  //残烟 - 卷烟
    private Double qt_bz;  //残烟 - 包装
    
    private Double zl_dkj; //成型机——搭口胶
    private Double zl_rrj; //成型机- 热熔胶
    private Double oth_jzj; //其他-接嘴胶
    private Double oth_dkj; //其他-搭扣胶
    private Double oth_bzj; //其他-包装胶
    
    private int del;  //0-默认   1-物理删除
    private String doid; //下一班的工单ID
    
    
    public String getMat_id() {
        return mat_id;
    }
    public void setMat_id(String mat_id) {
        this.mat_id = mat_id;
    }
    public String getDoid() {
        return doid;
    }
    public void setDoid(String doid) {
        this.doid = doid;
    }
    public int getDel() {
        return del;
    }
    public void setDel(int del) {
        this.del = del;
    }
    public Double getQt_jy() {
        return qt_jy;
    }
    public void setQt_jy(Double qt_jy) {
        this.qt_jy = qt_jy;
    }
    public Double getQt_bz() {
        return qt_bz;
    }
    public void setQt_bz(Double qt_bz) {
        this.qt_bz = qt_bz;
    }
    public Double getZb_kz() {
        return zb_kz;
    }
    public void setZb_kz(Double zb_kz) {
        this.zb_kz = zb_kz;
    }
    public Double getZb_fq() {
        return zb_fq;
    }
    public void setZb_fq(Double zb_fq) {
        this.zb_fq = zb_fq;
    }
    public Double getZl_dkj() {
        return zl_dkj;
    }
    public void setZl_dkj(Double zl_dkj) {
        this.zl_dkj = zl_dkj;
    }
    public Double getZl_rrj() {
        return zl_rrj;
    }
    public void setZl_rrj(Double zl_rrj) {
        this.zl_rrj = zl_rrj;
    }
    public Double getOth_jzj() {
        return oth_jzj;
    }
    public void setOth_jzj(Double oth_jzj) {
        this.oth_jzj = oth_jzj;
    }
    public Double getOth_dkj() {
        return oth_dkj;
    }
    public void setOth_dkj(Double oth_dkj) {
        this.oth_dkj = oth_dkj;
    }
    public Double getOth_bzj() {
        return oth_bzj;
    }
    public void setOth_bzj(Double oth_bzj) {
        this.oth_bzj = oth_bzj;
    }
    public long getId() {
        return id;
    }
    public void setId(long id) {
        this.id = id;
    }
    public String getMec_id() {
        return mec_id;
    }
    public void setMec_id(String mec_id) {
        this.mec_id = mec_id;
    }
    public String getEqp_id() {
        return eqp_id;
    }
    public void setEqp_id(String eqp_id) {
        this.eqp_id = eqp_id;
    }
    public String getTeam_id() {
        return team_id;
    }
    public void setTeam_id(String team_id) {
        this.team_id = team_id;
    }
    public String getShift_id() {
        return shift_id;
    }
    public void setShift_id(String shift_id) {
        this.shift_id = shift_id;
    }
    public String getOid() {
        return oid;
    }
    public void setOid(String oid) {
        this.oid = oid;
    }
    public String getMat_name() {
        return mat_name;
    }
    public void setMat_name(String mat_name) {
        this.mat_name = mat_name;
    }
    public Double getQty() {
        return qty;
    }
    public void setQty(Double qty) {
        this.qty = qty;
    }
    public String getHandover_user_name() {
        return handover_user_name;
    }
    public void setHandover_user_name(String handover_user_name) {
        this.handover_user_name = handover_user_name;
    }
    public String getHandover_user_id() {
        return handover_user_id;
    }
    public void setHandover_user_id(String handover_user_id) {
        this.handover_user_id = handover_user_id;
    }
    public String getReceive_user_name() {
        return receive_user_name;
    }
    public void setReceive_user_name(String receive_user_name) {
        this.receive_user_name = receive_user_name;
    }
    public String getReceive_user_id() {
        return receive_user_id;
    }
    public void setReceive_user_id(String receive_user_id) {
        this.receive_user_id = receive_user_id;
    }
    
    public Date getCreate_time() {
        return create_time;
    }
    public void setCreate_time(Date create_time) {
        this.create_time = create_time;
    }
    public Date getUpdate_time() {
        return update_time;
    }
    public void setUpdate_time(Date update_time) {
        this.update_time = update_time;
    }
    public String getUpdate_user_id() {
        return update_user_id;
    }
    public void setUpdate_user_id(String update_user_id) {
        this.update_user_id = update_user_id;
    }
    public Integer getZc_type() {
        return zc_type;
    }
    public void setZc_type(Integer zc_type) {
        this.zc_type = zc_type;
    }
    public Integer getFl_type() {
        return fl_type;
    }
    public void setFl_type(Integer fl_type) {
        this.fl_type = fl_type;
    }
    public Integer getStatus() {
        return status;
    }
    public void setStatus(Integer status) {
        this.status = status;
    }
    public Double getZj_pz() {
        return zj_pz;
    }
    public void setZj_pz(Double zj_pz) {
        this.zj_pz = zj_pz;
    }
    public Double getZj_ssz() {
        return zj_ssz;
    }
    public void setZj_ssz(Double zj_ssz) {
        this.zj_ssz = zj_ssz;
    }
    public Double getZj_lb() {
        return zj_lb;
    }
    public void setZj_lb(Double zj_lb) {
        this.zj_lb = zj_lb;
    }
    public Double getZj_szy() {
        return zj_szy;
    }
    public void setZj_szy(Double zj_szy) {
        this.zj_szy = zj_szy;
    }
    public Double getZb_lbz() {
        return zb_lbz;
    }
    public void setZb_lbz(Double zb_lbz) {
        this.zb_lbz = zb_lbz;
    }
    public Double getZb_xhz() {
        return zb_xhz;
    }
    public void setZb_xhz(Double zb_xhz) {
        this.zb_xhz = zb_xhz;
    }
    public Double getZb_xhm() {
        return zb_xhm;
    }
    public void setZb_xhm(Double zb_xhm) {
        this.zb_xhm = zb_xhm;
    }
    public Double getZb_thz() {
        return zb_thz;
    }
    public void setZb_thz(Double zb_thz) {
        this.zb_thz = zb_thz;
    }
    public Double getZb_thm() {
        return zb_thm;
    }
    public void setZb_thm(Double zb_thm) {
        this.zb_thm = zb_thm;
    }
    public Double getZb_lx1() {
        return zb_lx1;
    }
    public void setZb_lx1(Double zb_lx1) {
        this.zb_lx1 = zb_lx1;
    }
    public Double getZb_lx2() {
        return zb_lx2;
    }
    public void setZb_lx2(Double zb_lx2) {
        this.zb_lx2 = zb_lx2;
    }
    public Double getZl_pz() {
        return zl_pz;
    }
    public void setZl_pz(Double zl_pz) {
        this.zl_pz = zl_pz;
    }
    public Double getZl_ss() {
        return zl_ss;
    }
    public void setZl_ss(Double zl_ss) {
        this.zl_ss = zl_ss;
    }
    public Double getZl_gy() {
        return zl_gy;
    }
    public void setZl_gy(Double zl_gy) {
        this.zl_gy = zl_gy;
    }
    public Double getYf_xp() {
        return yf_xp;
    }
    public void setYf_xp(Double yf_xp) {
        this.yf_xp = yf_xp;
    }
    public Double getYf_jd() {
        return yf_jd;
    }
    public void setYf_jd(Double yf_jd) {
        this.yf_jd = yf_jd;
    }
    public Double getQt_bfy() {
        return qt_bfy;
    }
    public void setQt_bfy(Double qt_bfy) {
        this.qt_bfy = qt_bfy;
    }
    public Double getQt_cc() {
        return qt_cc;
    }
    public void setQt_cc(Double qt_cc) {
        this.qt_cc = qt_cc;
    }
 
    
    
    
 
}