| | |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import lombok.experimental.Accessors; |
| | | import org.jeecg.common.aspect.annotation.Dict; |
| | | import org.jeecgframework.poi.excel.annotation.Excel; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | |
| | | /**产线ID*/ |
| | | @Excel(name = "产线ID", width = 15) |
| | | @ApiModelProperty(value = "产线ID") |
| | | @Dict(dictTable = "base_factory", dicCode = "id", dicText = "factory_name") |
| | | private String factoryId; |
| | | /**库存地ID*/ |
| | | @Excel(name = "库存地ID", width = 15) |
| | | @ApiModelProperty(value = "库存地ID") |
| | | @Dict(dictTable = "base_line_side_warehouse", dicCode = "id", dicText = "warehouse_name") |
| | | private String warehouseId; |
| | | /**物料编码*/ |
| | | @Excel(name = "物料编码", width = 15) |
| | |
| | | /**入库数量*/ |
| | | @Excel(name = "入库数量", width = 15) |
| | | @ApiModelProperty(value = "入库数量") |
| | | private Integer quantity; |
| | | private Double quantity; |
| | | /**接收人*/ |
| | | @Excel(name = "接收人", width = 15) |
| | | @ApiModelProperty(value = "接收人") |