自动化立体仓库 - WMS系统
whycq
2025-01-08 ac92d2777fc472ae766e2bd6209c70691fe5dc5b
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
package com.zy.asrs.entity;
 
import com.baomidou.mybatisplus.annotations.TableField;
import com.core.common.Cools;import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.enums.IdType;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import com.baomidou.mybatisplus.annotations.TableName;
import java.io.Serializable;
 
@Data
@TableName("man_emptyBarrel_in")
public class EmptyBarrelIn implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
//    @ApiModelProperty(value= "")
    @TableId(value = "id", type = IdType.AUTO)
    @TableField("id")
    private Integer id;
 
    @ApiModelProperty(value= "")
    @TableField("matnr")
    private String matnr;
 
    @ApiModelProperty(value= "")
    @TableField("batch")
    private String batch;
 
    @ApiModelProperty(value= "")
    @TableField("maktx")
    private String maktx;
 
    public EmptyBarrelIn() {}
 
    public EmptyBarrelIn(String matnr,String batch,String maktx) {
        this.matnr = matnr;
        this.batch = batch;
        this.maktx = maktx;
    }
 
//    EmptyBarrelIn emptyBarrelIn = new EmptyBarrelIn(
//            null,    // 
//            null,    // 
//            null    // 
//    );
 
 
}