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.math.BigDecimal; import java.util.Date; /** * Created by vincent on 2021/6/21 */ @Data @TableName("asr_loc_normal_log") public class LocNoramlLog { @ApiModelProperty(value= "物料") private String matnr; @ApiModelProperty(value= "物料描述") private String maktx; @ApiModelProperty(value= "规格") private String lgnum; @ApiModelProperty(value= "物料类别") private String type; @ApiModelProperty(value= "生产单号") private String mnemonic; @ApiModelProperty(value= "通知单号") private String supplier; @ApiModelProperty(value= "仓库") private String warehouse; @TableField(exist = false) private String warehouseName; @ApiModelProperty(value= "数量") private Double anfme; @ApiModelProperty(value= "备注") private String memo; @ApiModelProperty(value= "创建时间") @TableField("create_time") private Date createTime; @ApiModelProperty(value= "修改时间") @TableField("update_time") private Date update_time; @ApiModelProperty(value= "创建者") @TableField("create_user") private Long createUser; @ApiModelProperty(value= "修改者") @TableField("update_user") private Long updateUser; @ApiModelProperty(value= "出入库类型(1入库,2出库, 3删除, 4更新)") @TableField("io_type") private Integer ioType; }