| | |
| | | @Schema(description = "生产任务 ID", example = "1") |
| | | private Long taskId; |
| | | |
| | | @Schema(description = "生产任务编码", example = "TASK001") |
| | | private String taskCode; |
| | | |
| | | @Schema(description = "生产任务名称", example = "注塑任务") |
| | | private String taskName; |
| | | |
| | | @Schema(description = "领料日期") |
| | | private LocalDateTime issueDate; |
| | | |
| | | @Schema(description = "需求时间", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | private LocalDateTime requiredTime; |
| | | |
| | | @Schema(description = "单据类型(1=正常领料,2=紧急补料)", example = "1") |
| | | private Integer issueType; |
| | | |
| | | @Schema(description = "状态", requiredMode = Schema.RequiredMode.REQUIRED, example = "10") |
| | | private Integer status; |
| | | |