自动化立体仓库 - WMS系统
LSH
2023-01-03 1f75b59680589aa2c5831ddfbe8255e0eab84fe8
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
package com.zy.ints.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.io.Serializable;
 
@Data
@TableName("erp_prdt_bak")
public class PrdtBak implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 品号
     */
    @ApiModelProperty(value = "品号")
    @TableId(value = "prd_no", type = IdType.INPUT)
    @TableField("prd_no")
    private String prdNo;
 
    /**
     * 品名
     */
    @ApiModelProperty(value = "品名")
    private String name;
 
    /**
     * 单位
     */
    @ApiModelProperty(value = "单位")
    private String ut;
 
    /**
     * 规格
     */
    @ApiModelProperty(value = "规格")
    private String spc;
 
    /**
     * 类型
     */
    @ApiModelProperty(value = "类型")
    private Integer type;
 
    /**
     * 状态
     */
    @ApiModelProperty(value = "状态")
    private Integer status;
 
    public PrdtBak() {
    }
 
    public PrdtBak(String prdNo, String name, String ut, String spc, Integer type, Integer status) {
        this.prdNo = prdNo;
        this.name = name;
        this.ut = ut;
        this.spc = spc;
        this.type = type;
        this.status = status;
    }
 
//    Prdt prdt = new Prdt(
//            null,    // id[非空]
//            null,    // 品号[非空]
//            null,    // 品名[非空]
//            null,    // 单位
//            null,    // 规格
//            null,    // 类型[非空]
//            null    // 状态[非空]
//    );
 
 
}