自动化立体仓库 - WMS系统
#
pang.jiabao
4 天以前 2dc12d419733c094bb0bbc7ef4f7a32d5067cfb9
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
package com.zy.asrs.entity.mes;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
 
import javax.validation.constraints.NotNull;
 
// MES物料信息
@Data
public class MesMatInfo {
 
    // 物料编码,唯一标识
    @NotNull
    private String item_no;
    // 物料名称
    @NotNull
    private String description;
    // 单位
    private String unit_of_measure;
    // 物料类型
    @NotNull
    private String item_type;
    // 材质
    private String cz;
    // 重量
    private float weight;
    // 物料属性
    @NotNull
    private String classification_code;
    // 图号
    private String drawing_no;
    // 设计备注
    private String item_comments;
    // 创建时间,timestamp
    private String create_date;
    // 最近一次修改时间,timestamp
    private String modified_date1;
    // 最近修改人
    private String modified_operator1;
    // 生产单位
    private String dept;
    // 是否关键件
    private String gt_code;
    // 规格型号
    private String specification;
    // 工艺备注
    private String proc_comments;
    // 工艺修改人
    private String proc_operator;
    // 工艺修改时间,timestamp
    private String proc_modified_date;
    // ABC码
    private String abc_code;
    // 供应商编码
    private String vendor_no;
    // 版本号
    private String drawing_version;
    // 生产订单号
    @NotNull
    @JsonProperty("OrderNo")
//    @JSONField(name = "OrderNo")
    private String OrderNo;
    // 本单入库数量
    @NotNull
    private Float qty;
 
}