From 01f910d795ba0e06338d255b01ea7eb26bd0ba47 Mon Sep 17 00:00:00 2001
From: xuhy <3313886187@qq.com>
Date: 星期四, 17 四月 2025 09:48:17 +0800
Subject: [PATCH] 取样操作管理

---
 ruoyi-system/src/main/resources/mapper/system/TTestMethodConfirmSheetTermMapper.xml |    3 ++-
 ruoyi-system/src/main/java/com/ruoyi/system/model/TTestMethodConfirmSheetTerm.java  |    4 ++++
 2 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/model/TTestMethodConfirmSheetTerm.java b/ruoyi-system/src/main/java/com/ruoyi/system/model/TTestMethodConfirmSheetTerm.java
index 5fbd4ea..4867119 100644
--- a/ruoyi-system/src/main/java/com/ruoyi/system/model/TTestMethodConfirmSheetTerm.java
+++ b/ruoyi-system/src/main/java/com/ruoyi/system/model/TTestMethodConfirmSheetTerm.java
@@ -49,6 +49,10 @@
     @TableField("term_method_code")
     private String termMethodCode;
 
+    @ApiModelProperty(value = "检测方法")
+    @TableField("term_method")
+    private String termMethod;
+
     @ApiModelProperty(value = "收样要求")
     @TableField("sample_require")
     private String sampleRequire;
diff --git a/ruoyi-system/src/main/resources/mapper/system/TTestMethodConfirmSheetTermMapper.xml b/ruoyi-system/src/main/resources/mapper/system/TTestMethodConfirmSheetTermMapper.xml
index 1c8dbac..19f6281 100644
--- a/ruoyi-system/src/main/resources/mapper/system/TTestMethodConfirmSheetTermMapper.xml
+++ b/ruoyi-system/src/main/resources/mapper/system/TTestMethodConfirmSheetTermMapper.xml
@@ -10,6 +10,7 @@
         <result column="term_name" property="termName" />
         <result column="term_type" property="termType" />
         <result column="term_method_code" property="termMethodCode" />
+        <result column="term_method" property="termMethod" />
         <result column="sample_require" property="sampleRequire" />
         <result column="term_standard" property="termStandard" />
         <result column="term_instrument" property="termInstrument" />
@@ -26,7 +27,7 @@
 
     <!-- 通用查询结果列 -->
     <sql id="Base_Column_List">
-        id, test_id, term_code, term_name, term_type, term_method_code, sample_require, term_standard, term_instrument, term_reagent, term_step, term_result, status, create_time, update_time, create_by, update_by, disabled
+        id, test_id, term_code, term_name, term_type, term_method_code,term_method, sample_require, term_standard, term_instrument, term_reagent, term_step, term_result, status, create_time, update_time, create_by, update_by, disabled
     </sql>
 
 </mapper>

--
Gitblit v1.7.1