| | |
| | | @NotNull(message = "退料单 ID 不能为空") |
| | | private Long issueId; |
| | | |
| | | @Schema(description = "生产任务 ID", example = "1") |
| | | private Long taskId; |
| | | |
| | | @Schema(description = "物料 ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "1") |
| | | @NotNull(message = "物料 ID 不能为空") |
| | | private Long itemId; |
| | |
| | | @Schema(description = "批次编码", example = "BCH20260330001") |
| | | private String batchCode; |
| | | |
| | | @Schema(description = "是否需要质检", requiredMode = Schema.RequiredMode.REQUIRED, example = "false") |
| | | @NotNull(message = "是否需要质检不能为空") |
| | | @Schema(description = "是否需要质检", example = "false") |
| | | private Boolean rqcCheckFlag; |
| | | |
| | | @Schema(description = "备注", example = "备注") |