| | |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | |
| | | public class LswMaterialOutbound implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /**主键*/ |
| | | /**主键*/ |
| | | @TableId(type = IdType.ASSIGN_ID) |
| | | @ApiModelProperty(value = "主键") |
| | | private String id; |
| | |
| | | @ApiModelProperty(value = "产线ID") |
| | | @Dict(dictTable = "base_factory", dicCode = "id", dicText = "factory_name") |
| | | private String factoryId; |
| | | /**库存ID*/ |
| | | @Excel(name = "库存ID", width = 15) |
| | | @ApiModelProperty(value = "库存ID") |
| | | private String inventoryId; |
| | | /**线边库ID*/ |
| | | @Excel(name = "线边库ID", width = 15) |
| | | @ApiModelProperty(value = "线边库ID") |
| | | private String warehouseId; |
| | | /**批次号*/ |
| | | @Excel(name = "批次号", width = 15) |
| | | @ApiModelProperty(value = "批次号") |
| | |
| | | /**出库数量*/ |
| | | @Excel(name = "出库数量", width = 15) |
| | | @ApiModelProperty(value = "出库数量") |
| | | private Double quantity; |
| | | /**工单ID*/ |
| | | @Excel(name = "工单ID", width = 15) |
| | | @ApiModelProperty(value = "工单ID") |
| | | private String workOrderId; |
| | | private BigDecimal quantity; |
| | | } |