From 1993ef2efaf55b8b42a51f3b9fd0ddfa80b2d0cd Mon Sep 17 00:00:00 2001
From: fujunling <2984387807@qq.com>
Date: 星期一, 10 七月 2023 14:25:15 +0800
Subject: [PATCH] fjl

---
 Source/UBCS/ubcs-service/ubcs-omd/src/main/resources/mapper/AttributeMapper.xml |   87 ++++++++++++++++++++++++++-----------------
 1 files changed, 53 insertions(+), 34 deletions(-)

diff --git a/Source/UBCS/ubcs-service/ubcs-omd/src/main/resources/mapper/AttributeMapper.xml b/Source/UBCS/ubcs-service/ubcs-omd/src/main/resources/mapper/AttributeMapper.xml
index 89528cf..6aaa387 100644
--- a/Source/UBCS/ubcs-service/ubcs-omd/src/main/resources/mapper/AttributeMapper.xml
+++ b/Source/UBCS/ubcs-service/ubcs-omd/src/main/resources/mapper/AttributeMapper.xml
@@ -4,47 +4,66 @@
 
     <!-- 閫氱敤鏌ヨ鏄犲皠缁撴灉 -->
     <resultMap id="baseResultMap" type="com.vci.ubcs.omd.entity.Attribute">
-        <id column="id" property="id"/>
-        <result column="create_user" property="createUser"/>
-        <result column="create_dept" property="createDept"/>
-        <result column="create_time" property="createTime"/>
-        <result column="update_user" property="updateUser"/>
-        <result column="update_time" property="updateTime"/>
-        <result column="status" property="status"/>
-        <result column="is_deleted" property="isDeleted"/>
-        <result column="tenant_id" property="tenantId"/>
-        <result column="key" property="key"/>
-        <result column="label" property="label"/>
-        <result column="create_user" property="createUser" jdbcType="NUMERIC"/>
-        <result column="create_dept" property="createDept" jdbcType="NUMERIC"/>
-        <result column="create_time" property="createTime" jdbcType="TIMESTAMP"/>
-        <result column="update_user" property="updateUser" jdbcType="NUMERIC"/>
-        <result column="update_time" property="updateTime" jdbcType="TIMESTAMP"/>
-        <result column="status" property="status" jdbcType="NUMERIC"/>
-        <result column="is_deleted" property="isDeleted" jdbcType="NUMERIC"/>
-        <result column="tenant_id" property="tenantId" jdbcType="NUMERIC"/>
-        <result column="key" property="key" jdbcType="VARCHAR"/>
-        <result column="label" property="label" jdbcType="VARCHAR"/>
+        <id column="oid" property="oid"/>
+        <result column="id" property="id"/>
+        <result column="name" property="name"/>
+        <result column="type_code" property="typeCode"/>
+        <result column="type_key" property="typeKey"/>
         <result column="hashtag" property="hashtag" jdbcType="VARCHAR"/>
         <result column="description" property="description" jdbcType="VARCHAR"/>
+        <result column="nullable" property="nullable"/>
+        <result column="max_length" property="maxLength"/>
+        <result column="precision" property="precision"/>
+        <result column="refer_type_code" property="referTypeCode"/>
+        <result column="refer_type_key" property="referTypeKey"/>
+        <result column="refer_to_id" property="referToId" jdbcType="VARCHAR"/>
+        <result column="refer_to_name" property="referToName"/>
+        <result column="using_dict" property="usingDict"/>
+        <result column="dict_code" property="dictCode"/>
+        <result column="dict_key" property="dictKey"/>
+        <result column="default_value" property="defaultValue"/>
+        <result column="create_time" property="createTime" jdbcType="TIMESTAMP"/>
+        <result column="creator" property="creator" jdbcType="VARCHAR"/>
+        <result column="owner" property="owner" jdbcType="VARCHAR"/>
+        <result column="last_modifier" property="lastModifier" jdbcType="VARCHAR"/>
+        <result column="last_modify_time" property="lastModifyTime" jdbcType="TIMESTAMP"/>
+        <result column="btm_name" property="btmName" jdbcType="TIMESTAMP"/>
         <result column="ts" property="ts" jdbcType="TIMESTAMP"/>
     </resultMap>
 
     <resultMap id="extraResultMap" type="com.vci.ubcs.omd.entity.Attribute">
-        <result column="nullable" property="nullable" jdbcType="VARCHAR"/>
-        <result column="max_length" property="maxLength" jdbcType="NUMERIC"/>
-        <result column="precision" property="precision" jdbcType="NUMERIC"/>
-        <result column="refer_to_id" property="referToId" jdbcType="NUMERIC"/>
-        <result column="refer_type_code" property="referTypeCode" jdbcType="VARCHAR"/>
-        <result column="refer_type_key" property="referTypeKey" jdbcType="VARCHAR"/>
-        <result column="refer_to_name" property="referToName" jdbcType="VARCHAR"/>
-<!--        <result column="using_dict" property="usingDict" jdbcType="VARCHAR"/>-->
-<!--        <result column="dict_code" property="dictCode" jdbcType="VARCHAR"/>-->
-<!--        <result column="dict_key" property="dictKey" jdbcType="VARCHAR"/>-->
-        <result column="default_value" property="defaultValue" jdbcType="VARCHAR"/>
+
     </resultMap>
 
+    <sql id="base_query_column">
+        oid, id, name, type_code, type_key, hashtag, description, nullable, max_length, precision,
+            refer_type_code, refer_type_key, refer_to_id, refer_to_name, using_dict, dict_code, dict_key,
+            default_value, create_time, creator, owner, last_modifier, last_modify_time, btm_name, ts
+    </sql>
+    <sql id="tableName">
+        pl_omd_attribute
+    </sql>
+    <select id="selectAll" resultMap="baseResultMap">
+        select
+        <include refid="base_query_column"/>
+        from
+        <include refid="tableName"/>
+    </select>
+    <select id="selectApplyRange" resultType="com.vci.ubcs.omd.entity.BtmType">
+        select
+            btm.*
+        from pl_omd_btm_type btm
+        join pl_omd_btm_type_attribute btmAttr on btmAttr.pk_btm_type = btm.oid
+        join <include refid="tableName"/> attr on attr.id = btmAttr.id
+        where attr.oid = #{oid}
+    </select>
 
-
-
+    <select id="checkIdExist" resultType="java.lang.Long">
+        select COUNT(*) FROM
+        <include refid="tableName"/>
+        where LOWER(ID) = #{id}
+        <if test="oid != null">
+            and OID != #{oid}
+        </if>
+    </select>
 </mapper>

--
Gitblit v1.9.3