From cdf5605fb5caa0da0f134893bac350785250ea8a Mon Sep 17 00:00:00 2001
From: liu <2021943741@qq.com>
Date: 星期四, 27 八月 2026 11:21:19 +0800
Subject: [PATCH] feat(mes): 基础参数与工序绑定,报工填写绑定的参数字段
---
yudao-module-mes/src/main/java/cn/iocoder/yudao/module/mes/controller/admin/pro/feedback/vo/MesProFeedbackRespVO.java | 31 +++++++++++++++++++++++++++++++
1 files changed, 31 insertions(+), 0 deletions(-)
diff --git a/yudao-module-mes/src/main/java/cn/iocoder/yudao/module/mes/controller/admin/pro/feedback/vo/MesProFeedbackRespVO.java b/yudao-module-mes/src/main/java/cn/iocoder/yudao/module/mes/controller/admin/pro/feedback/vo/MesProFeedbackRespVO.java
index 4df6e71..5695b34 100644
--- a/yudao-module-mes/src/main/java/cn/iocoder/yudao/module/mes/controller/admin/pro/feedback/vo/MesProFeedbackRespVO.java
+++ b/yudao-module-mes/src/main/java/cn/iocoder/yudao/module/mes/controller/admin/pro/feedback/vo/MesProFeedbackRespVO.java
@@ -10,6 +10,7 @@
import java.math.BigDecimal;
import java.time.LocalDateTime;
+import java.util.List;
@Schema(description = "绠$悊鍚庡彴 - MES 鐢熶骇鎶ュ伐 Response VO")
@Data
@@ -177,4 +178,34 @@
@ExcelProperty("BPM 娴佺▼瀹氫箟 Key")
private String processDefinitionKey;
+ @Schema(description = "鏈鎶ュ伐瀵瑰簲鐨勪换鍔″弬鏁板�硷紙鎸変换鍔″弬鏁拌褰曞揩鐓у睍绀猴級")
+ private List<ParamValueResp> paramValues;
+
+ @Data
+ @Schema(description = "鎶ュ伐鍙傛暟鍊�")
+ public static class ParamValueResp {
+
+ @Schema(description = "浠诲姟鍙傛暟璁板綍鏄庣粏缂栧彿", example = "1")
+ private Long detailId;
+
+ @Schema(description = "鍙傛暟缂栫爜", example = "PP2024001")
+ private String paramCode;
+
+ @Schema(description = "鍙傛暟鍚嶇О", example = "娓╁害")
+ private String paramName;
+
+ @Schema(description = "鍙傛暟绫诲瀷", example = "2")
+ private Integer paramType;
+
+ @Schema(description = "璁¢噺鍗曚綅鍚嶇О", example = "鈩�")
+ private String unitMeasureName;
+
+ @Schema(description = "鍙傛暟鍊�", example = "200")
+ private String paramValue;
+
+ @Schema(description = "鏄惁蹇呭~", example = "true")
+ private Boolean required;
+
+ }
+
}
--
Gitblit v1.9.3