package com.zy.asrs.entity;
|
|
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)
|
private Integer id;
|
|
@ApiModelProperty(value= "")
|
private String matnr;
|
|
@ApiModelProperty(value= "")
|
private String batch;
|
|
@ApiModelProperty(value= "")
|
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 //
|
// );
|
|
|
}
|