| | |
| | | import com.baomidou.mybatisplus.annotation.TableLogic; |
| | | import lombok.Data; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import org.jeecg.common.constant.CommonConstant; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | import org.jeecgframework.poi.excel.annotation.Excel; |
| | | import org.jeecg.common.aspect.annotation.Dict; |
| | |
| | | @Excel(name = "删除标记", width = 15) |
| | | @ApiModelProperty(value = "删除标记") |
| | | @TableLogic |
| | | private Integer delFlag; |
| | | private Integer delFlag = CommonConstant.DEL_FLAG_0; |
| | | /**仓库编码*/ |
| | | @Excel(name = "仓库编码", width = 15) |
| | | @ApiModelProperty(value = "仓库编码") |
| | |
| | | @Excel(name = "仓库名称", width = 15) |
| | | @ApiModelProperty(value = "仓库名称") |
| | | private String warehouseName; |
| | | /**仓库状态*/ |
| | | @Excel(name = "仓库状态", width = 15) |
| | | @ApiModelProperty(value = "仓库状态") |
| | | private String warehouseStatus; |
| | | /**工厂/产线ID*/ |
| | | @Excel(name = "工厂/产线ID", width = 15) |
| | | @ApiModelProperty(value = "工厂/产线ID") |
| | | @Dict(dictTable = "base_factory", dicCode = "id", dicText = "factory_name") |
| | | private String factoryId; |
| | | } |