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_matnr_code")
|
public class MatnrCode implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@ApiModelProperty(value= "")
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
@ApiModelProperty(value= "")
|
private Integer code;
|
|
@ApiModelProperty(value= "")
|
private String matnr;
|
|
public MatnrCode() {}
|
|
public MatnrCode(Integer code,String matnr) {
|
this.code = code;
|
this.matnr = matnr;
|
}
|
|
// MatnrCode matnrCode = new MatnrCode(
|
// null, //
|
// null //
|
// );
|
|
|
}
|