| | |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | |
| | | /**计划生产数量*/ |
| | | @Excel(name = "计划生产数量", width = 15) |
| | | @ApiModelProperty(value = "计划生产数量") |
| | | private Double planQuantity; |
| | | private BigDecimal planQuantity; |
| | | /**产线ID(冗余)*/ |
| | | @Excel(name = "产线ID(冗余)", width = 15) |
| | | @Dict(dictTable = "base_factory", dicCode = "id", dicText = "factory_name") |
| | |
| | | @ApiModelProperty(value = "排产日期") |
| | | private Date workOrderDate; |
| | | /**工单状态*/ |
| | | @Excel(name = "工单状态", width = 15, dicCode = "mes_work_order_status") |
| | | @Dict(dicCode = "mes_work_order_status") |
| | | @Excel(name = "工单状态", width = 15, dicCode = "work_order_status") |
| | | @Dict(dicCode = "work_order_status") |
| | | @ApiModelProperty(value = "工单状态") |
| | | private String workOrderStatus; |
| | | /**是否通过齐套性检查*/ |
| | | @Excel(name = "是否通过齐套性检查", width = 15, dicCode = "yn") |
| | | @Dict(dicCode = "yn") |
| | | @ApiModelProperty(value = "是否通过齐套性检查") |
| | | private String completenessCheckFlag = CommonConstant.DEFAULT_0; |
| | | /**是否通过设备点检*/ |
| | | @Excel(name = "是否通过设备点检", width = 15, dicCode = "yn") |
| | | @Dict(dicCode = "yn") |
| | | @ApiModelProperty(value = "是否通过设备点检") |
| | | private String equipmentInspectionFlag = CommonConstant.DEFAULT_0; |
| | | /**是否通过工艺点检*/ |
| | | @Excel(name = "是否通过工艺点检", width = 15, dicCode = "yn") |
| | | @Dict(dicCode = "yn") |
| | | @ApiModelProperty(value = "是否通过工艺点检") |
| | | private String processInspectionFlag = CommonConstant.DEFAULT_0; |
| | | /**实际报工数量*/ |
| | | @Excel(name = "实际报工数量", width = 15) |
| | | @ApiModelProperty(value = "实际报工数量") |
| | | private Double actualQuantity; |
| | | private BigDecimal actualQuantity; |
| | | /**发布人*/ |
| | | @Excel(name = "发布人", width = 15) |
| | | @ApiModelProperty(value = "发布人") |