| | |
| | | package org.jeecg.modules.lsw.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableLogic; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | |
| | | @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") |
| | | @ApiModelProperty(value = "更新日期") |
| | | private Date updateTime; |
| | | /**所属部门*/ |
| | | @ApiModelProperty(value = "所属部门") |
| | | private String sysOrgCode; |
| | | /**删除标记*/ |
| | | @Excel(name = "删除标记", width = 15) |
| | | @ApiModelProperty(value = "删除标记") |
| | | @TableLogic |
| | | private Integer delFlag; |
| | | /**物料编码*/ |
| | | @Excel(name = "物料编码", width = 15) |
| | | @ApiModelProperty(value = "物料编码") |
| | | private String materialNumber; |
| | | /**物料名称*/ |
| | | @Excel(name = "物料名称", width = 15) |
| | | @ApiModelProperty(value = "物料名称") |
| | | private String materialName; |
| | | /**物料型号*/ |
| | | @Excel(name = "物料型号", width = 15) |
| | | @ApiModelProperty(value = "物料型号") |
| | | private String materialModel; |
| | | /**物料类型*/ |
| | | @Excel(name = "物料类型", width = 15, dicCode = "material_category") |
| | | @Dict(dicCode = "material_category") |
| | | @ApiModelProperty(value = "物料类型") |
| | | private String materialCategory; |
| | | /**单位*/ |
| | | @Excel(name = "单位", width = 15) |
| | | @ApiModelProperty(value = "单位") |
| | | /**基本计量单位*/ |
| | | @ApiModelProperty(value = "基本计量单位") |
| | | private String materialUnit; |
| | | /**物料状态*/ |
| | | @ApiModelProperty(value = "物料状态") |
| | | private String materialStatus; |
| | | |
| | | /** 物料类型是否为空 */ |
| | | @TableField(exist = false) |
| | | private boolean materialCategoryNull; |
| | | } |