| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.jeecg.common.aspect.annotation.Dict; |
| | | import org.jeecg.common.constant.CommonConstant; |
| | | import org.jeecg.modules.lsw.enums.MaterialInventoryStatusEnum; |
| | | import org.jeecgframework.poi.excel.annotation.Excel; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | |
| | | @ApiModelProperty(value = "库存状态") |
| | | @Dict(dicCode = "material_inventory_status") |
| | | private String inventoryStatus; |
| | | /**热处理标识*/ |
| | | @Excel(name = "热处理标识", width = 15) |
| | | @ApiModelProperty(value = "热处理标识") |
| | | private String heatTreatmentFlag = CommonConstant.STATUS_0; |
| | | |
| | | public LswMaterialInventory(){} |
| | | |