| | |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | | @Schema(description = "管理后台 - MES 快速报工 Request VO") |
| | | @Data |
| | |
| | | @NotNull(message = "报工数量不能为空") |
| | | private BigDecimal feedbackQuantity; |
| | | |
| | | @Schema(description = "合格品数量(非质检工序必填)", example = "48") |
| | | private BigDecimal qualifiedQuantity; |
| | | |
| | | @Schema(description = "不良品数量", example = "2") |
| | | private BigDecimal unqualifiedQuantity; |
| | | @Schema(description = "工艺参数值") |
| | | private List<MesProFeedbackSaveReqVO.ParamValue> paramValues; |
| | | |
| | | @Schema(description = "备注", example = "快速报工") |
| | | private String remark; |