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
/**  
* @Title: SchWorkorderIO.java
* @Description:
* @author baoshiwei  
* @date 2019年5月15日  
* @version 1.0  
*/ 
package com.shlanbao.tzsc.base.mapping;
 
import java.io.Serializable;
import java.util.Date;
 
import com.shlanbao.tzsc.utils.extents.DateFmtAnnotation;
 
/**  
* @Title: SchWorkorderIO 
* @Description:  工单出入库记录实体
* @author baoshiwei  
* @date 2019年5月15日  
*/
public class SchWorkorderIO implements Serializable{
 
    private String id;                                        // 主键id
    private String workorderNumber;                            // 工单号
    private String matCode;                                    // 生产牌号
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")    
    private Date operationTime;                                // 作完成时间
    private String inOutType;                                // 出库类型
    private String operator;                                // 操作人
    private String materialCode;                            // 物料号
    private String batchCode;                                // 批次号
    private Double quantity;                                // 数量
    private String uom;                                        // 单位
    private String replaceMaterial;                            // 替代料描述
    private Double minorQuantity;                            // 辅计量数量
    private String minorUom;                                // 辅单位
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")    
    private Date consumeTime;                                // 物料出库时间
    private String remark;                                    // 备注
    private String attr1;                                    // 备用字段1
    private String attr2;                                    // 备用字段2
    /**
     * @return the id
     */
    public String getId() {
        return id;
    }
    /**
     * @param id the id to set
     */
    public void setId(String id) {
        this.id = id;
    }
    /**
     * @return the workorderNumber
     */
    public String getWorkorderNumber() {
        return workorderNumber;
    }
    /**
     * @param workorderNumber the workorderNumber to set
     */
    public void setWorkorderNumber(String workorderNumber) {
        this.workorderNumber = workorderNumber;
    }
    /**
     * @return the matCode
     */
    public String getMatCode() {
        return matCode;
    }
    /**
     * @param matCode the matCode to set
     */
    public void setMatCode(String matCode) {
        this.matCode = matCode;
    }
    /**
     * @return the operationTime
     */
    public Date getOperationTime() {
        return operationTime;
    }
    /**
     * @param operationTime the operationTime to set
     */
    public void setOperationTime(Date operationTime) {
        this.operationTime = operationTime;
    }
    /**
     * @return the inOutType
     */
    public String getInOutType() {
        return inOutType;
    }
    /**
     * @param inOutType the inOutType to set
     */
    public void setInOutType(String inOutType) {
        this.inOutType = inOutType;
    }
    /**
     * @return the operator
     */
    public String getOperator() {
        return operator;
    }
    /**
     * @param operator the operator to set
     */
    public void setOperator(String operator) {
        this.operator = operator;
    }
    /**
     * @return the materialCode
     */
    public String getMaterialCode() {
        return materialCode;
    }
    /**
     * @param materialCode the materialCode to set
     */
    public void setMaterialCode(String materialCode) {
        this.materialCode = materialCode;
    }
    /**
     * @return the batchCode
     */
    public String getBatchCode() {
        return batchCode;
    }
    /**
     * @param batchCode the batchCode to set
     */
    public void setBatchCode(String batchCode) {
        this.batchCode = batchCode;
    }
 
    /**
     * @return the uom
     */
    public String getUom() {
        return uom;
    }
    /**
     * @param uom the uom to set
     */
    public void setUom(String uom) {
        this.uom = uom;
    }
    /**
     * @return the replaceMaterial
     */
    public String getReplaceMaterial() {
        return replaceMaterial;
    }
    /**
     * @param replaceMaterial the replaceMaterial to set
     */
    public void setReplaceMaterial(String replaceMaterial) {
        this.replaceMaterial = replaceMaterial;
    }
 
    public Double getQuantity() {
        return quantity;
    }
 
    public void setQuantity(Double quantity) {
        this.quantity = quantity;
    }
 
    public Double getMinorQuantity() {
        return minorQuantity;
    }
 
    public void setMinorQuantity(Double minorQuantity) {
        this.minorQuantity = minorQuantity;
    }
 
    /**
     * @return the minorUom
     */
    public String getMinorUom() {
        return minorUom;
    }
    /**
     * @param minorUom the minorUom to set
     */
    public void setMinorUom(String minorUom) {
        this.minorUom = minorUom;
    }
    /**
     * @return the consumeTime
     */
    public Date getConsumeTime() {
        return consumeTime;
    }
    /**
     * @param consumeTime the consumeTime to set
     */
    public void setConsumeTime(Date consumeTime) {
        this.consumeTime = consumeTime;
    }
    /**
     * @return the remark
     */
    public String getRemark() {
        return remark;
    }
    /**
     * @param remark the remark to set
     */
    public void setRemark(String remark) {
        this.remark = remark;
    }
    /**
     * @return the attr1
     */
    public String getAttr1() {
        return attr1;
    }
    /**
     * @param attr1 the attr1 to set
     */
    public void setAttr1(String attr1) {
        this.attr1 = attr1;
    }
    /**
     * @return the attr2
     */
    public String getAttr2() {
        return attr2;
    }
    /**
     * @param attr2 the attr2 to set
     */
    public void setAttr2(String attr2) {
        this.attr2 = attr2;
    }
    
    
    
}