From 5911e94b65e45c98c81f64928232b5d8f824a19b Mon Sep 17 00:00:00 2001
From: 疯狂的狮子Li <15040126243@163.com>
Date: 星期六, 14 一月 2023 01:01:13 +0800
Subject: [PATCH] update 优化 利用 resultMap 自动映射配置 简化 xml (非嵌套)

---
 ruoyi-system/src/main/resources/mapper/system/SysDictDataMapper.xml |  138 ---------------------------------------------
 1 files changed, 1 insertions(+), 137 deletions(-)

diff --git a/ruoyi-system/src/main/resources/mapper/system/SysDictDataMapper.xml b/ruoyi-system/src/main/resources/mapper/system/SysDictDataMapper.xml
index e99cebe..1ebfad7 100644
--- a/ruoyi-system/src/main/resources/mapper/system/SysDictDataMapper.xml
+++ b/ruoyi-system/src/main/resources/mapper/system/SysDictDataMapper.xml
@@ -4,140 +4,4 @@
         "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
 <mapper namespace="com.ruoyi.system.mapper.SysDictDataMapper">
 
-    <resultMap type="SysDictData" id="SysDictDataResult">
-        <id property="dictCode" column="dict_code"/>
-        <result property="dictSort" column="dict_sort"/>
-        <result property="dictLabel" column="dict_label"/>
-        <result property="dictValue" column="dict_value"/>
-        <result property="dictType" column="dict_type"/>
-        <result property="cssClass" column="css_class"/>
-        <result property="listClass" column="list_class"/>
-        <result property="isDefault" column="is_default"/>
-        <result property="status" column="status"/>
-        <result property="createBy" column="create_by"/>
-        <result property="createTime" column="create_time"/>
-        <result property="updateBy" column="update_by"/>
-        <result property="updateTime" column="update_time"/>
-    </resultMap>
-
-    <sql id="selectDictDataVo">
-        select dict_code,
-               dict_sort,
-               dict_label,
-               dict_value,
-               dict_type,
-               css_class,
-               list_class,
-               is_default,
-               status,
-               create_by,
-               create_time,
-               remark
-        from sys_dict_data
-    </sql>
-
-    <select id="selectDictDataList" parameterType="SysDictData" resultMap="SysDictDataResult">
-        <include refid="selectDictDataVo"/>
-        <where>
-            <if test="dictType != null and dictType != ''">
-                AND dict_type = #{dictType}
-            </if>
-            <if test="dictLabel != null and dictLabel != ''">
-                AND dict_label like concat('%', #{dictLabel}, '%')
-            </if>
-            <if test="status != null and status != ''">
-                AND status = #{status}
-            </if>
-        </where>
-        order by dict_sort asc
-    </select>
-
-    <select id="selectDictDataByType" parameterType="SysDictData" resultMap="SysDictDataResult">
-        <include refid="selectDictDataVo"/>
-        where status = '0' and dict_type = #{dictType} order by dict_sort asc
-    </select>
-
-    <select id="selectDictLabel" resultType="String">
-        select dict_label
-        from sys_dict_data
-        where dict_type = #{dictType}
-          and dict_value = #{dictValue}
-    </select>
-
-    <select id="selectDictDataById" parameterType="Long" resultMap="SysDictDataResult">
-        <include refid="selectDictDataVo"/>
-        where dict_code = #{dictCode}
-    </select>
-
-    <select id="countDictDataByType" resultType="Integer">
-        select count(1)
-        from sys_dict_data
-        where dict_type = #{dictType}
-    </select>
-
-    <delete id="deleteDictDataById" parameterType="Long">
-        delete
-        from sys_dict_data
-        where dict_code = #{dictCode}
-    </delete>
-
-    <delete id="deleteDictDataByIds" parameterType="Long">
-        delete from sys_dict_data where dict_code in
-        <foreach collection="array" item="dictCode" open="(" separator="," close=")">
-            #{dictCode}
-        </foreach>
-    </delete>
-
-    <update id="updateDictData" parameterType="SysDictData">
-        update sys_dict_data
-        <set>
-            <if test="dictSort != null">dict_sort = #{dictSort},</if>
-            <if test="dictLabel != null and dictLabel != ''">dict_label = #{dictLabel},</if>
-            <if test="dictValue != null and dictValue != ''">dict_value = #{dictValue},</if>
-            <if test="dictType != null and dictType != ''">dict_type = #{dictType},</if>
-            <if test="cssClass != null">css_class = #{cssClass},</if>
-            <if test="listClass != null">list_class = #{listClass},</if>
-            <if test="isDefault != null and isDefault != ''">is_default = #{isDefault},</if>
-            <if test="status != null">status = #{status},</if>
-            <if test="remark != null">remark = #{remark},</if>
-            <if test="updateBy != null and updateBy != ''">update_by = #{updateBy},</if>
-            update_time = sysdate()
-        </set>
-        where dict_code = #{dictCode}
-    </update>
-
-    <update id="updateDictDataType" parameterType="String">
-        update sys_dict_data
-        set dict_type = #{newDictType}
-        where dict_type = #{oldDictType}
-    </update>
-
-    <insert id="insertDictData" parameterType="SysDictData">
-        insert into sys_dict_data(
-        <if test="dictSort != null">dict_sort,</if>
-        <if test="dictLabel != null and dictLabel != ''">dict_label,</if>
-        <if test="dictValue != null and dictValue != ''">dict_value,</if>
-        <if test="dictType != null and dictType != ''">dict_type,</if>
-        <if test="cssClass != null and cssClass != ''">css_class,</if>
-        <if test="listClass != null and listClass != ''">list_class,</if>
-        <if test="isDefault != null and isDefault != ''">is_default,</if>
-        <if test="status != null">status,</if>
-        <if test="remark != null and remark != ''">remark,</if>
-        <if test="createBy != null and createBy != ''">create_by,</if>
-        create_time
-        )values(
-        <if test="dictSort != null">#{dictSort},</if>
-        <if test="dictLabel != null and dictLabel != ''">#{dictLabel},</if>
-        <if test="dictValue != null and dictValue != ''">#{dictValue},</if>
-        <if test="dictType != null and dictType != ''">#{dictType},</if>
-        <if test="cssClass != null and cssClass != ''">#{cssClass},</if>
-        <if test="listClass != null and listClass != ''">#{listClass},</if>
-        <if test="isDefault != null and isDefault != ''">#{isDefault},</if>
-        <if test="status != null">#{status},</if>
-        <if test="remark != null and remark != ''">#{remark},</if>
-        <if test="createBy != null and createBy != ''">#{createBy},</if>
-        sysdate()
-        )
-    </insert>
-
-</mapper> 
\ No newline at end of file
+</mapper>

--
Gitblit v1.9.3