| | |
| | | @ExcelProperty("单位") |
| | | private String unitMeasureName; |
| | | |
| | | @Schema(description = "生产数量", example = "100.00") |
| | | @ExcelProperty("生产数量") |
| | | @Schema(description = "订单数量", example = "100.00") |
| | | @ExcelProperty("订单数量") |
| | | private BigDecimal quantity; |
| | | |
| | | @Schema(description = "已生产数量", example = "50.00") |
| | | @ExcelProperty("已生产数量") |
| | | private BigDecimal quantityProduced; |
| | | |
| | | @Schema(description = "完工进度", example = "50.00") |
| | | @ExcelProperty("完工进度") |
| | | private BigDecimal completionProgress; |
| | | |
| | | @Schema(description = "调整数量", example = "0") |
| | | @ExcelProperty("调整数量") |
| | |
| | | @ExcelProperty("创建时间") |
| | | private LocalDateTime createTime; |
| | | |
| | | @Schema(description = "工序进度列表") |
| | | private java.util.List<MesProWorkOrderProcessProgressVO> processProgressList; |
| | | |
| | | @Schema(description = "生产状态 (0: 待生产, 1: 生产中, 2: 生产完成)") |
| | | @ExcelProperty("生产状态") |
| | | private Integer productionStatus; |
| | | |
| | | } |