From 34de09b7eb5e1aa7cc03494b8ed82b49839454f4 Mon Sep 17 00:00:00 2001
From: 潘志宝 <979469083@qq.com>
Date: 星期五, 25 四月 2025 17:24:14 +0800
Subject: [PATCH] 影响因数偏差值 表结构修改

---
 ansteel-biz/src/main/java/com/iailab/module/ansteel/coking/dto/CokingTraceDeviationDTO.java |   74 ++++++++++++++++++++++++++++++++-----
 1 files changed, 64 insertions(+), 10 deletions(-)

diff --git a/ansteel-biz/src/main/java/com/iailab/module/ansteel/coking/dto/CokingTraceDeviationDTO.java b/ansteel-biz/src/main/java/com/iailab/module/ansteel/coking/dto/CokingTraceDeviationDTO.java
index 53810df..33f807f 100644
--- a/ansteel-biz/src/main/java/com/iailab/module/ansteel/coking/dto/CokingTraceDeviationDTO.java
+++ b/ansteel-biz/src/main/java/com/iailab/module/ansteel/coking/dto/CokingTraceDeviationDTO.java
@@ -8,13 +8,13 @@
 
 
 /**
- * 焦化工序影响因数偏差值
+ * 焦化工序影响因素偏差值
  *
  * @author lirm ${email}
  * @since 1.0.0 2025-04-16
  */
 @Data
-@Schema(description = "焦化工序影响因数偏差值")
+@Schema(description = "焦化工序影响因素偏差值")
 public class CokingTraceDeviationDTO implements Serializable {
     private static final long serialVersionUID = 1L;
 
@@ -27,20 +27,74 @@
 	@Schema(description = "工序名称")
 	private String process;
 
+	@Schema(description = "建议对象")
+	private String sugObj;
+
 	@Schema(description = "查询时间")
 	private String clock;
 
-	@Schema(description = "分组名称")
-	private String groupName;
+	@Schema(description = "一级指标-偏差值-名称")
+	private String ind1Name;
 
-	@Schema(description = "指标名称")
-	private String indName;
+	@Schema(description = "一级指标-偏差值-值")
+	private String ind1Value;
 
-	@Schema(description = "偏差值")
-	private String indValue;
+	@Schema(description = "一级指标-偏差值-单位")
+	private String ind1Unit;
 
-	@Schema(description = "单位")
-	private String indUnit;
+	@Schema(description = "二级指标-偏差值-名称")
+	private String ind2Name;
+
+	@Schema(description = "二级指标-偏差值-值")
+	private String ind2Value;
+
+	@Schema(description = "二级指标-偏差值-单位")
+	private String ind2Unit;
+
+	@Schema(description = "影响因素1-偏差值-名称")
+	private String fac1Name;
+
+	@Schema(description = "影响因素1-偏差值-值")
+	private String fac1Value;
+
+	@Schema(description = "影响因素1-偏差值-单位")
+	private String fac1Unit;
+
+	@Schema(description = "影响因素2-偏差值-名称")
+	private String fac2Name;
+
+	@Schema(description = "影响因素2-偏差值-值")
+	private String fac2Value;
+
+	@Schema(description = "影响因素2-偏差值-单位")
+	private String fac2Unit;
+
+	@Schema(description = "影响因素3-偏差值-名称")
+	private String fac3Name;
+
+	@Schema(description = "影响因素3-偏差值-值")
+	private String fac3Value;
+
+	@Schema(description = "影响因素3-偏差值-单位")
+	private String fac3Unit;
+
+	@Schema(description = "影响因素4-偏差值-名称")
+	private String fac4Name;
+
+	@Schema(description = "影响因素4-偏差值-值")
+	private String fac4Value;
+
+	@Schema(description = "影响因素4-偏差值-单位")
+	private String fac4Unit;
+
+	@Schema(description = "影响因素5-偏差值-名称")
+	private String fac5Name;
+
+	@Schema(description = "影响因素5-偏差值-值")
+	private String fac5Value;
+
+	@Schema(description = "影响因素5-偏差值-单位")
+	private String fac5Unit;
 
 	@Schema(description = "创建时间")
 	private Date createDate;

--
Gitblit v1.9.3