| | |
| | | @Schema(description = "来源单据编号", example = "FB20250101001") |
| | | private String sourceDocCode; |
| | | |
| | | // ========== 生产关联 ========== |
| | | |
| | | @Schema(description = "生产工单 ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "10") |
| | | private Long workOrderId; |
| | | |
| | | @Schema(description = "工单编号", example = "WO20250101001") |
| | | @ExcelProperty("工单编号") |
| | | private String workOrderCode; |
| | | |
| | | @Schema(description = "工单名称", example = "生产工单A") |
| | | private String workOrderName; |
| | | |
| | | @Schema(description = "生产任务 ID", example = "20") |
| | | private Long taskId; |
| | | |
| | | @Schema(description = "工位 ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "30") |
| | | private Long workstationId; |
| | | |
| | | @Schema(description = "工位名称", example = "工位A") |
| | | @ExcelProperty("工位名称") |
| | | private String workstationName; |
| | | |
| | | @Schema(description = "工序 ID", example = "40") |
| | | private Long processId; |
| | | |
| | | @Schema(description = "工序名称", example = "组装") |
| | | @ExcelProperty("工序名称") |
| | | private String processName; |
| | | @Schema(description = "批号", example = "BC20250101") |
| | | @ExcelProperty("批号") |
| | | private String batchCode; |
| | | |
| | | // ========== 物料 ========== |
| | | |