From fc299368cffdd0f1091cd7e9580cf046b4d65dde Mon Sep 17 00:00:00 2001
From: lihang <lihang@vci-tech.com>
Date: 星期四, 13 七月 2023 10:13:37 +0800
Subject: [PATCH] Merge branch 'master' of http://dev.vci-tech.com:1065/r/ubcs

---
 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..5dd7cba 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.9.3