| | |
| | | @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; |
| | | |