自动化立体仓库 - WMS系统
dubin
2 天以前 437430655faafbedabd32e00871e7accea02fa42
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
package com.zy.asrs.entity;
 
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.annotations.TableName;
import com.baomidou.mybatisplus.enums.IdType;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.util.Date;
 
@Data
@TableName("man_mat_inout")
public class InOut {
    /**
     * ID
     */
    @ApiModelProperty(value= "托盘条码")
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    /**
     * 所属归类
     */
    @TableField("tag_id")
    private Long tagId;
 
    /**
     * 商品编号
     */
    @TableField("matnr")
    private String matnr;
 
 
    /**
     * 商品名称
     */
    @TableField("maktx")
    private String maktx;
 
    /**
     * 别名
     */
    @TableField("name")
    private String name;
 
    /**
     * 规格
     */
    @TableField("specs")
    private String specs;
 
    /**
     * 颜色
     */
    @TableField("color")
    private String color;
 
    /**
     * 条码
     */
    @TableField("barcode")
    private String barcode;
 
    /**
     * 生产日期
     */
    @TableField("manu_date")
    private String manuDate;
 
    /**
     * 供应商
     */
    @TableField("supp")
    private String supp;
 
    /**
     * 供应商编码
     */
    @TableField("supp_code")
    private String suppCode;
 
    @TableField("temp1")
    private String temp1;
 
    @TableField("temp2")
    private String temp2;
 
    @TableField("temp3")
    private String temp3;
 
    @TableField("update_time")
    private String modiTime;
 
 
 
    public InOut() {}
 
    public InOut(String uuid, Long tagId, String matnr, String maktx, String name, String specs, String model, String color, String brand, String unit, Double price, String sku, Double units, String barcode, String origin, String manu, String manuDate, String itemNum, Double safeQty, Double weight, String length, String volume, String threeCode, String supp, String suppCode, Integer beBatch, String deadTime, Integer deadWarn, Integer source, Integer inspect, Integer danger, Integer status, Long createBy, Date createTime, Long updateBy, Date updateTime, String memo) {
        this.tagId = tagId;
        this.matnr = matnr;
        this.maktx = maktx;
        this.name = name;
        this.specs = specs;
        this.color = color;
        this.barcode = barcode;
        this.manuDate = manuDate;
        this.supp = supp;
        this.suppCode = suppCode;
    }
}