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
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
package com.shlanbao.tzsc.pms.cos.brand.beans;
 
import java.util.Hashtable;
 
public class BrandBean {
    private String eqdCode;//设备code 注:非ID
    private String eqdID;//设备ID
    private String eqdType;//类型 卷烟机,包装机
    private String workOrderId;//工单ID
    private String batch;//批次
    private String matName;//牌号
    private String teamName;//班组
    private double qty;//产量
    private String unit;//产量单位
    private String time;//生产日期
    private String team;//班组
    private String fmatName;//辅料名称
    private String fmatType;//辅料类型
    private String fmatTypeID;//辅料类型ID
    private double fqty;//辅料消耗量
    private String funit;//辅料单位
    private String shiftId;//班次
    private String shiftName;//班次名称
    private double excluding;//剔除量
    
    public void setExcluding(double excluding) {
        this.excluding = excluding;
    }
    public double getExcluding() {
        return excluding;
    }
    public String getShiftName() {
        return shiftName;
    }
 
    public void setShiftName(String shiftName) {
        this.shiftName = shiftName;
    }
 
    public String getShiftId() {
        return shiftId;
    }
 
    public void setShiftId(String shiftId) {
        this.shiftId = shiftId;
    }
 
    public String getEqdCode() {
        return eqdCode;
    }
 
    public void setEqdCode(String eqdCode) {
        this.eqdCode = eqdCode;
    }
    public String getEqdID() {
        return eqdID;
    }
 
    public void setEqdID(String eqdID) {
        this.eqdID = eqdID;
    }
 
    public String getUnit() {
        return unit;
    }
 
    public void setUnit(String unit) {
        this.unit = unit;
    }
 
    public String getFunit() {
        return funit;
    }
 
    public void setFunit(String funit) {
        this.funit = funit;
    }
 
    public String getBatch() {
        return batch;
    }
 
    public void setBatch(String batch) {
        this.batch = batch;
    }
 
    public String getFmatTypeID() {
        return fmatTypeID;
    }
 
    public void setFmatTypeID(String fmatTypeID) {
        this.fmatTypeID = fmatTypeID;
    }
 
    public String getFmatType() {
        return fmatType;
    }
 
    public void setFmatType(String fmatType) {
        this.fmatType = fmatType;
    }
 
    public String getFmatName() {
        return fmatName;
    }
 
    public void setFmatName(String fmatName) {
        this.fmatName = fmatName;
    }
 
    public double getFqty() {
        return fqty;
    }
 
    public void setFqty(double fqty) {
        this.fqty = fqty;
    }
 
    public String getTime() {
        return time;
    }
 
    public void setTime(String time) {
        this.time = time;
    }
 
    public String getTeam() {
        return team;
    }
 
    public void setTeam(String team) {
        this.team = team;
    }
 
    private Hashtable<String,String[]> ht;//key 辅料类型+成品牌号,value 数组:0、辅料类型,1、消耗量,2、单位,3、单价,4、总成本,5、单箱成本
 
    public String getEqdType() {
        return eqdType;
    }
 
    public void setEqdType(String eqdType) {
        this.eqdType = eqdType;
    }
 
    public String getWorkOrderId() {
        return workOrderId;
    }
 
    public void setWorkOrderId(String workOrderId) {
        this.workOrderId = workOrderId;
    }
 
    public String getMatName() {
        return matName;
    }
 
    public void setMatName(String matName) {
        this.matName = matName;
    }
 
    public String getTeamName() {
        return teamName;
    }
 
    public void setTeamName(String teamName) {
        this.teamName = teamName;
    }
 
    public double getQty() {
        return qty;
    }
 
    public void setQty(double qty) {
        this.qty = qty;
    }
 
    public Hashtable<String, String[]> getHt() {
        return ht;
    }
 
    public void setHt(Hashtable<String, String[]> ht) {
        this.ht = ht;
    }
    
    
    
    
}