| | |
| | | @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("调整数量") |
| | |
| | | @Schema(description = "客户名称", example = "客户 A") |
| | | @ExcelProperty("客户名称") |
| | | private String clientName; |
| | | |
| | | @Schema(description = "关联营销订单(ERP销售订单)编号", example = "500") |
| | | private Long saleOrderId; |
| | | |
| | | @Schema(description = "关联营销订单(ERP销售订单)单号", example = "SO-001") |
| | | @ExcelProperty("营销订单号") |
| | | private String saleOrderNo; |
| | | |
| | | @Schema(description = "供应商编号", example = "400") |
| | | private Long vendorId; |
| | |
| | | @ExcelProperty("创建时间") |
| | | private LocalDateTime createTime; |
| | | |
| | | @Schema(description = "工序进度列表") |
| | | private java.util.List<MesProWorkOrderProcessProgressVO> processProgressList; |
| | | |
| | | @Schema(description = "生产状态 (0: 待生产, 1: 生产中, 2: 生产完成)") |
| | | @ExcelProperty("生产状态") |
| | | private Integer productionStatus; |
| | | |
| | | } |