| | |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDateTime; |
| | | import java.util.List; |
| | | |
| | | @Schema(description = "管理后台 - MES 生产任务 Response VO") |
| | | @Data |
| | |
| | | @Schema(description = "不良品数量", example = "2.00") |
| | | private BigDecimal unqualifyQuantity; |
| | | |
| | | @Schema(description = "待报工数量", example = "50.00") |
| | | private BigDecimal pendingQuantity; |
| | | |
| | | @Schema(description = "在途报工数量", example = "20.00") |
| | | private BigDecimal inTransitQuantity; |
| | | |
| | | @Schema(description = "可报工数量", example = "30.00") |
| | | private BigDecimal reportableQuantity; |
| | | |
| | | @Schema(description = "报工完成率(%)", example = "50.00") |
| | | private BigDecimal feedbackRate; |
| | | |
| | | @Schema(description = "调整数量", example = "0") |
| | | private BigDecimal changedQuantity; |
| | | |
| | |
| | | @Schema(description = "是否质检(派生自工艺路线工序 checkFlag)", example = "true") |
| | | private Boolean checkFlag; |
| | | |
| | | @Schema(description = "是否倒冲(派生自工艺路线工序 backflushFlag)", example = "true") |
| | | private Boolean backflushFlag; |
| | | |
| | | @Schema(description = "备注", example = "备注") |
| | | private String remark; |
| | | |
| | | @Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | private LocalDateTime createTime; |
| | | |
| | | @Schema(description = "停工历史记录") |
| | | private List<MesProTaskPauseRecordRespVO> pauseRecords; |
| | | |
| | | } |