SysDictDataMapper.xml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper
  3. PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  4. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  5. <mapper namespace="com.lqkj.system.mapper.SysDictDataMapper">
  6. <resultMap type="SysDictData" id="SysDictDataResult">
  7. <id property="dictCode" column="dict_code" />
  8. <result property="dictSort" column="dict_sort" />
  9. <result property="dictLabel" column="dict_label" />
  10. <result property="dictValue" column="dict_value" />
  11. <result property="dictType" column="dict_type" />
  12. <result property="cssClass" column="css_class" />
  13. <result property="listClass" column="list_class" />
  14. <result property="isDefault" column="is_default" />
  15. <result property="status" column="status" />
  16. <result property="createBy" column="create_by" />
  17. <result property="createTime" column="create_time" />
  18. <result property="updateBy" column="update_by" />
  19. <result property="updateTime" column="update_time" />
  20. <result property="icon" column="icon" />
  21. </resultMap>
  22. <sql id="selectDictDataVo">
  23. select dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, remark, icon
  24. from sys_dict_data
  25. </sql>
  26. <select id="selectDictDataList" parameterType="SysDictData" resultMap="SysDictDataResult">
  27. <include refid="selectDictDataVo"/>
  28. <where>
  29. <if test="dictType != null and dictType != ''">
  30. AND dict_type = #{dictType}
  31. </if>
  32. <if test="dictLabel != null and dictLabel != ''">
  33. AND dict_label like concat('%', #{dictLabel}, '%')
  34. </if>
  35. <if test="status != null">
  36. AND status = #{status}
  37. </if>
  38. </where>
  39. order by dict_sort asc
  40. </select>
  41. <select id="selectDictDataByType" parameterType="SysDictData" resultMap="SysDictDataResult">
  42. <include refid="selectDictDataVo"/>
  43. where status = true and dict_type = #{dictType} order by dict_sort asc
  44. </select>
  45. <select id="selectDictLabel" resultType="String">
  46. select dict_label from sys_dict_data
  47. where dict_type = #{dictType} and dict_value = #{dictValue}
  48. </select>
  49. <select id="selectDictDataById" parameterType="Integer" resultMap="SysDictDataResult">
  50. <include refid="selectDictDataVo"/>
  51. where dict_code = #{dictCode}
  52. </select>
  53. <select id="countDictDataByType" resultType="Integer">
  54. select count(1) from sys_dict_data where dict_type=#{dictType}
  55. </select>
  56. <delete id="deleteDictDataById" parameterType="Integer">
  57. delete from sys_dict_data where dict_code = #{dictCode}
  58. </delete>
  59. <delete id="deleteDictDataByIds" parameterType="Integer">
  60. delete from sys_dict_data where dict_code in
  61. <foreach collection="array" item="dictCode" open="(" separator="," close=")">
  62. #{dictCode}
  63. </foreach>
  64. </delete>
  65. <update id="updateDictData" parameterType="SysDictData">
  66. update sys_dict_data
  67. <set>
  68. <if test="dictSort != null">dict_sort = #{dictSort},</if>
  69. <if test="dictLabel != null and dictLabel != ''">dict_label = #{dictLabel},</if>
  70. <if test="dictValue != null and dictValue != ''">dict_value = #{dictValue},</if>
  71. <if test="dictType != null and dictType != ''">dict_type = #{dictType},</if>
  72. <if test="cssClass != null">css_class = #{cssClass},</if>
  73. <if test="listClass != null">list_class = #{listClass},</if>
  74. <if test="isDefault != null">is_default = #{isDefault},</if>
  75. <if test="status != null">status = #{status},</if>
  76. <if test="remark != null">remark = #{remark},</if>
  77. <if test="updateBy != null and updateBy != ''">update_by = #{updateBy},</if>
  78. <if test="icon != null and icon != ''">icon = #{icon},</if>
  79. update_time = now()
  80. </set>
  81. where dict_code = #{dictCode}
  82. </update>
  83. <update id="updateDictDataType" parameterType="String">
  84. update sys_dict_data set dict_type = #{newDictType} where dict_type = #{oldDictType}
  85. </update>
  86. <insert id="insertDictData" parameterType="SysDictData">
  87. insert into sys_dict_data(
  88. <if test="dictSort != null">dict_sort,</if>
  89. <if test="dictLabel != null and dictLabel != ''">dict_label,</if>
  90. <if test="dictValue != null and dictValue != ''">dict_value,</if>
  91. <if test="dictType != null and dictType != ''">dict_type,</if>
  92. <if test="cssClass != null and cssClass != ''">css_class,</if>
  93. <if test="listClass != null and listClass != ''">list_class,</if>
  94. <if test="isDefault != null">is_default,</if>
  95. <if test="status != null">status,</if>
  96. <if test="remark != null and remark != ''">remark,</if>
  97. <if test="createBy != null and createBy != ''">create_by,</if>
  98. <if test="icon != null and icon != ''">icon,</if>
  99. create_time
  100. )values(
  101. <if test="dictSort != null">#{dictSort},</if>
  102. <if test="dictLabel != null and dictLabel != ''">#{dictLabel},</if>
  103. <if test="dictValue != null and dictValue != ''">#{dictValue},</if>
  104. <if test="dictType != null and dictType != ''">#{dictType},</if>
  105. <if test="cssClass != null and cssClass != ''">#{cssClass},</if>
  106. <if test="listClass != null and listClass != ''">#{listClass},</if>
  107. <if test="isDefault != null">#{isDefault},</if>
  108. <if test="status != null">#{status},</if>
  109. <if test="remark != null and remark != ''">#{remark},</if>
  110. <if test="createBy != null and createBy != ''">#{createBy},</if>
  111. <if test="icon != null and icon != ''">#{icon},</if>
  112. now()
  113. )
  114. </insert>
  115. </mapper>