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
package com.shlanbao.tzsc.data.runtime.bean;
 
public class BoxerData {
    private String equipmentCode;//设备code
    private String equipmentType;//设备型号
    private String equipmentEdcs;//设备名称
    private String workorderCode;//工单号
    private String matName;//牌号
    private Double planQty;//计划产量
    private String unit;
    private String planStim;//计划开始时间
    private String planEtim;//计划结束时间
    private String bthCode;//批次号
    private String stim;//开始时间
 
    //实时数据部分
    private Integer online;//网络状态  0异常,1正常
    private Double qty;//产量
    private Double pbjQty;//排包机产量
 
    public BoxerData() {
        super();
    }
    /**
    * @author 作者 :shisihai 
    * @version 创建时间:2016年8月4日 上午9:06:49 
    * 功能说明 :实时数据
     */
    public BoxerData(String equipmentCode, Integer online, Double qty, Double pbjQty) {
        super();
        this.equipmentCode = equipmentCode;
        this.online = online;
        this.qty = qty;
        this.pbjQty=pbjQty;
    }
 
    public BoxerData(Integer online, Double qty, Double pbjQty) {
        this.online = online;
        this.qty = qty;
        this.pbjQty = pbjQty;
    }
 
    public Double getPbjQty() {
        return pbjQty;
    }
    public void setPbjQty(Double pbjQty) {
        this.pbjQty = pbjQty;
    }
    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 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;
    }
    
}