自动化立体仓库 - WMS系统
lty
2 天以前 264a479aa1ad16818110e9f9d833bbf02e298f47
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
package com.zy.asrs.entity;
 
import com.core.common.Cools;import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.enums.IdType;
import com.baomidou.mybatisplus.annotations.TableField;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import com.baomidou.mybatisplus.annotations.TableName;
import java.io.Serializable;
 
@Data
@TableName("asr_erp_mat")
public class ErpMat implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 自增id
     */
    @ApiModelProperty(value= "自增id")
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    /**
     * 物料编码
     */
    @ApiModelProperty(value= "物料编码")
    private String matNr;
 
    /**
     * 物料名称
     */
    @ApiModelProperty(value= "物料名称")
    private String makTx;
 
    /**
     * 物料分组编码
     */
    @ApiModelProperty(value= "物料分组编码")
    @TableField("group_id")
    private String groupId;
 
    /**
     * 物料分组
     */
    @ApiModelProperty(value= "物料分组")
    @TableField("group_name")
    private String groupName;
 
    /**
     * 规格
     */
    @ApiModelProperty(value= "规格")
    private String spec;
 
    /**
     * 型号
     */
    @ApiModelProperty(value= "型号")
    private String model;
 
    /**
     * 重量
     */
    @ApiModelProperty(value= "重量")
    private Double weight;
 
    /**
     * 颜色
     */
    @ApiModelProperty(value= "颜色")
    private String color;
 
    /**
     * 尺寸
     */
    @ApiModelProperty(value= "尺寸")
    private String size;
 
    /**
     * 单位
     */
    @ApiModelProperty(value= "单位")
    private String unit;
 
    /**
     * 描述
     */
    @ApiModelProperty(value= "描述")
    private String describe;
 
    /**
     * 仓库Id
     */
    @ApiModelProperty(value= "仓库Id")
    @TableField("wareHouse_id")
    private String wareHouseId;
 
    /**
     * 操作类型,1 新增(默认);2 修改;3 禁用;4 启用;
     */
    @ApiModelProperty(value= "操作类型,1 新增(默认);2 修改;3 禁用;4 启用;")
    @TableField("operate_type")
    private Integer operateType;
 
    /**
     * 1:已发送 0:待发送
     */
    @ApiModelProperty(value= "1:已发送 0:待发送")
    @TableField("send_status")
    private Integer sendStatus;
 
    public ErpMat() {}
 
    public ErpMat(String matNr,String makTx,String groupId,String groupName,String spec,String model,Double weight,String color,String size,String unit,String describe,String wareHouseId,Integer operateType,Integer sendStatus) {
        this.matNr = matNr;
        this.makTx = makTx;
        this.groupId = groupId;
        this.groupName = groupName;
        this.spec = spec;
        this.model = model;
        this.weight = weight;
        this.color = color;
        this.size = size;
        this.unit = unit;
        this.describe = describe;
        this.wareHouseId = wareHouseId;
        this.operateType = operateType;
        this.sendStatus = sendStatus;
    }
 
//    ErpMat erpMat = new ErpMat(
//            null,    // 物料编码[非空]
//            null,    // 物料名称[非空]
//            null,    // 物料分组编码
//            null,    // 物料分组
//            null,    // 规格
//            null,    // 型号
//            null,    // 重量
//            null,    // 颜色
//            null,    // 尺寸
//            null,    // 单位
//            null,    // 描述
//            null,    // 仓库Id
//            null,    // 操作类型,1 新增(默认);2 修改;3 禁用;4 启用;
//            null    // 1:已发送 0:待发送
//    );
 
 
}