SysDictDataMapper.xml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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. <result property="parkId" column="park_id"/>
  22. </resultMap>
  23. <sql id="selectDictDataVo">
  24. select dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, remark, icon, park_id
  25. from sys_dict_data
  26. </sql>
  27. <select id="selectDictDataList" parameterType="SysDictData" resultMap="SysDictDataResult">
  28. <include refid="selectDictDataVo"/>
  29. <where>
  30. <if test="dictType != null and dictType != ''">
  31. AND dict_type = #{dictType}
  32. </if>
  33. <if test="dictLabel != null and dictLabel != ''">
  34. AND dict_label like concat('%', #{dictLabel}, '%')
  35. </if>
  36. <if test="status != null">
  37. AND status = #{status}
  38. </if>
  39. <if test="parkId != null">
  40. AND park_id = #{parkId}
  41. </if>
  42. </where>
  43. order by dict_sort asc
  44. </select>
  45. <select id="selectDictDataByType" parameterType="SysDictData" resultMap="SysDictDataResult">
  46. <include refid="selectDictDataVo"/>
  47. where status = true and dict_type = #{dictType} order by dict_sort asc
  48. </select>
  49. <select id="selectDictLabel" resultType="String">
  50. select dict_label from sys_dict_data
  51. where dict_type = #{dictType} and dict_value = #{dictValue}
  52. </select>
  53. <select id="selectDictDataById" parameterType="Integer" resultMap="SysDictDataResult">
  54. <include refid="selectDictDataVo"/>
  55. where dict_code = #{dictCode}
  56. </select>
  57. <select id="countDictDataByType" resultType="Integer">
  58. select count(1) from sys_dict_data where dict_type=#{dictType}
  59. </select>
  60. <delete id="deleteDictDataById" parameterType="Integer">
  61. delete from sys_dict_data where dict_code = #{dictCode}
  62. </delete>
  63. <delete id="deleteDictDataByIds" parameterType="Integer">
  64. delete from sys_dict_data where dict_code in
  65. <foreach collection="array" item="dictCode" open="(" separator="," close=")">
  66. #{dictCode}
  67. </foreach>
  68. </delete>
  69. <update id="updateDictData" parameterType="SysDictData">
  70. update sys_dict_data
  71. <set>
  72. <if test="dictSort != null">dict_sort = #{dictSort},</if>
  73. <if test="dictLabel != null and dictLabel != ''">dict_label = #{dictLabel},</if>
  74. <if test="dictValue != null and dictValue != ''">dict_value = #{dictValue},</if>
  75. <if test="dictType != null and dictType != ''">dict_type = #{dictType},</if>
  76. <if test="cssClass != null">css_class = #{cssClass},</if>
  77. <if test="listClass != null">list_class = #{listClass},</if>
  78. <if test="isDefault != null">is_default = #{isDefault},</if>
  79. <if test="status != null">status = #{status},</if>
  80. <if test="remark != null">remark = #{remark},</if>
  81. <if test="updateBy != null and updateBy != ''">update_by = #{updateBy},</if>
  82. <if test="icon != null and icon != ''">icon = #{icon},</if>
  83. <if test="parkId != null">park_id = #{parkId},</if>
  84. update_time = now()
  85. </set>
  86. where dict_code = #{dictCode}
  87. </update>
  88. <update id="updateDictDataType" parameterType="String">
  89. update sys_dict_data set dict_type = #{newDictType} where dict_type = #{oldDictType}
  90. </update>
  91. <insert id="insertDictData" parameterType="SysDictData">
  92. insert into sys_dict_data(
  93. <if test="dictSort != null">dict_sort,</if>
  94. <if test="dictLabel != null and dictLabel != ''">dict_label,</if>
  95. <if test="dictValue != null and dictValue != ''">dict_value,</if>
  96. <if test="dictType != null and dictType != ''">dict_type,</if>
  97. <if test="cssClass != null and cssClass != ''">css_class,</if>
  98. <if test="listClass != null and listClass != ''">list_class,</if>
  99. <if test="isDefault != null">is_default,</if>
  100. <if test="status != null">status,</if>
  101. <if test="remark != null and remark != ''">remark,</if>
  102. <if test="createBy != null and createBy != ''">create_by,</if>
  103. <if test="icon != null and icon != ''">icon,</if>
  104. <if test="parkId != null">park_id,</if>
  105. create_time
  106. )values(
  107. <if test="dictSort != null">#{dictSort},</if>
  108. <if test="dictLabel != null and dictLabel != ''">#{dictLabel},</if>
  109. <if test="dictValue != null and dictValue != ''">#{dictValue},</if>
  110. <if test="dictType != null and dictType != ''">#{dictType},</if>
  111. <if test="cssClass != null and cssClass != ''">#{cssClass},</if>
  112. <if test="listClass != null and listClass != ''">#{listClass},</if>
  113. <if test="isDefault != null">#{isDefault},</if>
  114. <if test="status != null">#{status},</if>
  115. <if test="remark != null and remark != ''">#{remark},</if>
  116. <if test="createBy != null and createBy != ''">#{createBy},</if>
  117. <if test="icon != null and icon != ''">#{icon},</if>
  118. <if test="parkId != null">#{parkId},</if>
  119. now()
  120. )
  121. </insert>
  122. </mapper>