13 小时以前 83d6b764019d3eef0f9c98cf11b98f98e1ef9274
yudao-module-mes/src/main/java/cn/iocoder/yudao/module/mes/controller/admin/pro/feedback/vo/MesProFeedbackSaveReqVO.java
@@ -6,6 +6,7 @@
import java.math.BigDecimal;
import java.time.LocalDateTime;
import java.util.List;
@Schema(description = "管理后台 - MES 生产报工新增/修改 Request VO")
@Data
@@ -84,6 +85,19 @@
    @NotNull(message = "审核人不能为空")
    private Long approveUserId;
    @Schema(description = "工艺参数值")
    private List<ParamValue> paramValues;
    @Data
    public static class ParamValue {
        @Schema(description = "任务参数记录明细编号", requiredMode = Schema.RequiredMode.REQUIRED)
        @NotNull(message = "参数明细不能为空")
        private Long detailId;
        @Schema(description = "参数值")
        private String value;
    }
    @Schema(description = "备注", example = "备注")
    private String remark;