| | |
| | | @NotBlank(message = "领料单名称不能为空") |
| | | private String name; |
| | | |
| | | @Schema(description = "生产工单 ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "1") |
| | | @NotNull(message = "生产工单 ID 不能为空") |
| | | @Schema(description = "生产任务 ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "1") |
| | | @NotNull(message = "生产任务 ID 不能为空") |
| | | private Long taskId; |
| | | |
| | | @Schema(description = "生产工单 ID", example = "1") |
| | | private Long workOrderId; |
| | | |
| | | @Schema(description = "工作站 ID", example = "1") |
| | | private Long workstationId; |
| | | |
| | | @Schema(description = "单据类型(1=正常领料,2=紧急补料)", example = "1") |
| | | private Integer issueType; |
| | | |
| | | @Schema(description = "需求时间", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | @NotNull(message = "需求时间不能为空") |
| | | private LocalDateTime requiredTime; |