From 6af6557a8d8a525ec3cab33607b8a041ef0968fa Mon Sep 17 00:00:00 2001
From: ludc
Date: 星期三, 08 十一月 2023 11:15:31 +0800
Subject: [PATCH] 历史导入生成编码时添加前后缀代码逻辑添加;历史导入模板下载时查询模板返回的key不区分大小写。

---
 Source/UBCS/ubcs-service/ubcs-omd/src/main/resources/mapper/LinkTypeMapper.xml |   12 +++++++++---
 1 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/Source/UBCS/ubcs-service/ubcs-omd/src/main/resources/mapper/LinkTypeMapper.xml b/Source/UBCS/ubcs-service/ubcs-omd/src/main/resources/mapper/LinkTypeMapper.xml
index c21779e..661da9b 100644
--- a/Source/UBCS/ubcs-service/ubcs-omd/src/main/resources/mapper/LinkTypeMapper.xml
+++ b/Source/UBCS/ubcs-service/ubcs-omd/src/main/resources/mapper/LinkTypeMapper.xml
@@ -19,16 +19,22 @@
         <result column="last_modifier" jdbcType="VARCHAR" property="lastModifier" />
         <result column="last_modify_time" jdbcType="TIMESTAMP" property="lastModifyTime" />
         <result column="ts" jdbcType="TIMESTAMP" property="ts" />
-        <result column="domain" jdbcType="VARCHAR" property="domain" />
+        <result column="biz_domain" jdbcType="VARCHAR" property="bizDomain" />
     </resultMap>
 
     <sql id="base_query_column">
-        oid, id, name, descrption, shape, impl_class, from_btm_type, from_btm_type_name,
+        oid, id, name, description, shape, impl_class, from_btm_type, from_btm_type_name,
             to_btm_type, to_btm_type_name, btm_name, owner, creator, create_time, last_modifier, last_modify_time,
-            ts, domain
+            ts, biz_domain
     </sql>
 
     <sql id="tableName">
         pl_omd_link_type
     </sql>
+
+    <select id="selectAll" resultMap="BaseResultMap">
+        select <include refid="base_query_column"/>
+        from <include refid="tableName" />
+    </select>
+
 </mapper>

--
Gitblit v1.10.0