cl
2024-01-16 cf6bff3922bbd0624b98834f6ea85c8e619e564f
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
package cn.stylefeng.guns.modular.bs.batchCodeStorage.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
import java.util.Date;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.FieldFill;
import com.baomidou.mybatisplus.annotation.TableField;
import java.io.Serializable;
 
/**
 * <p>
 * 批次存储临时表
 * </p>
 *
 * @author zrm
 * @since 2023-02-15
 */
@TableName("bs_batch_code_storage")
public class BatchCodeStorage implements Serializable {
 
    private static final long serialVersionUID=1L;
 
    /**
     * 主键id
     */
      @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    /**
     * 物料编号
     */
    @TableField("material_code")
    private String materialCode;
 
    /**
     * 物料名称
     */
    @TableField("material_name")
    private String materialName;
 
    /**
     * 批次码
     */
    @TableField("batch_code")
    private String batchCode;
 
    /**
     * 生产工单号
     */
    @TableField("work_order_no")
    private String workOrderNo;
 
    /**
     * 生产线
     */
    @TableField("production_line")
    private String productionLine;
 
    /**
     * 工位编号
     */
    @TableField("location_code")
    private String locationCode;
 
    /**
     * 是否扫码
     */
    @TableField("is_scan")
    private String isScan;
 
    /**
     * 数量
     */
    @TableField("quantity")
    private Long quantity;
 
    /**
     * 预留字段1
     */
    @TableField("spare_field_1")
    private String spareField1;
 
    /**
     * 预留字段2
     */
    @TableField("spare_field_2")
    private String spareField2;
 
    /**
     * 备注
     */
    @TableField("remarks")
    private String remarks;
 
    /**
     * 创建用户
     */
      @TableField(value = "create_user", fill = FieldFill.INSERT)
    private String createUser;
 
    /**
     * 创建时间
     */
      @TableField(value = "create_time", fill = FieldFill.INSERT)
    private Date createTime;
 
    @TableField("erp_spec")
    private String erpSpec;
 
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getMaterialCode() {
        return materialCode;
    }
 
    public void setMaterialCode(String materialCode) {
        this.materialCode = materialCode;
    }
 
    public String getMaterialName() {
        return materialName;
    }
 
    public void setMaterialName(String materialName) {
        this.materialName = materialName;
    }
 
    public String getBatchCode() {
        return batchCode;
    }
 
    public void setBatchCode(String batchCode) {
        this.batchCode = batchCode;
    }
 
    public String getWorkOrderNo() {
        return workOrderNo;
    }
 
    public void setWorkOrderNo(String workOrderNo) {
        this.workOrderNo = workOrderNo;
    }
 
    public String getProductionLine() {
        return productionLine;
    }
 
    public void setProductionLine(String productionLine) {
        this.productionLine = productionLine;
    }
 
    public String getLocationCode() {
        return locationCode;
    }
 
    public void setLocationCode(String locationCode) {
        this.locationCode = locationCode;
    }
 
    public String getIsScan() {
        return isScan;
    }
 
    public void setIsScan(String isScan) {
        this.isScan = isScan;
    }
 
    public Long getQuantity() {
        return quantity;
    }
 
    public void setQuantity(Long quantity) {
        this.quantity = quantity;
    }
 
    public String getSpareField1() {
        return spareField1;
    }
 
    public void setSpareField1(String spareField1) {
        this.spareField1 = spareField1;
    }
 
    public String getSpareField2() {
        return spareField2;
    }
 
    public void setSpareField2(String spareField2) {
        this.spareField2 = spareField2;
    }
 
    public String getRemarks() {
        return remarks;
    }
 
    public void setRemarks(String remarks) {
        this.remarks = remarks;
    }
 
    public String getCreateUser() {
        return createUser;
    }
 
    public void setCreateUser(String createUser) {
        this.createUser = createUser;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public String getErpSpec() {
        return erpSpec;
    }
 
    public void setErpSpec(String erpSpec) {
        this.erpSpec = erpSpec;
    }
 
    @Override
    public String toString() {
        return "BatchCodeStorage{" +
        "id=" + id +
        ", materialCode=" + materialCode +
        ", materialName=" + materialName +
        ", batchCode=" + batchCode +
        ", workOrderNo=" + workOrderNo +
        ", productionLine=" + productionLine +
        ", locationCode=" + locationCode +
        ", isScan=" + isScan +
        ", quantity=" + quantity +
        ", spareField1=" + spareField1 +
        ", spareField2=" + spareField2 +
        ", remarks=" + remarks +
        ", createUser=" + createUser +
        ", createTime=" + createTime +
        ", erpSpec=" + erpSpec +
        "}";
    }
}