| | |
| | | @Schema(description = "工序编号", example = "1") |
| | | private Long processId; |
| | | |
| | | @Schema(description = "工艺参数模板编号", example = "1") |
| | | private Long paramTemplateId; |
| | | |
| | | @Schema(description = "工序名称", example = "注塑") |
| | | private String processName; |
| | | |
| | |
| | | |
| | | @Schema(description = "调整数量", example = "0") |
| | | private BigDecimal changedQuantity; |
| | | |
| | | @Schema(description = "报工倒计时开始时间") |
| | | private LocalDateTime waitStartTime; |
| | | |
| | | @Schema(description = "客户编号", example = "300") |
| | | private Long clientId; |
| | |
| | | @Schema(description = "停工历史记录") |
| | | private List<MesProTaskPauseRecordRespVO> pauseRecords; |
| | | |
| | | @Schema(description = "指定报工人员 ID 集合") |
| | | private List<Long> assigneeUserIds; |
| | | |
| | | @Schema(description = "指定报工人员姓名集合") |
| | | private List<String> assigneeUserNames; |
| | | |
| | | @Schema(description = "是否报工审批") |
| | | private Boolean feedbackApprove; |
| | | } |