ConfigMapper.xml 4.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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.ruoyi.project.system.config.mapper.ConfigMapper">
  6. <resultMap type="Config" id="ConfigResult">
  7. <id property="configId" column="config_id" />
  8. <result property="configName" column="config_name" />
  9. <result property="configKey" column="config_key" />
  10. <result property="configValue" column="config_value" />
  11. <result property="configType" column="config_type" />
  12. <result property="createBy" column="create_by" />
  13. <result property="createTime" column="create_time" />
  14. <result property="updateBy" column="update_by" />
  15. <result property="updateTime" column="update_time" />
  16. </resultMap>
  17. <select id="selectConfigById" parameterType="Integer" resultMap="ConfigResult">
  18. select config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark from sys_config
  19. where config_id = #{configId}
  20. </select>
  21. <select id="selectConfigByKey" parameterType="String" resultMap="ConfigResult">
  22. select config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark from sys_config
  23. where config_key = #{configKey}
  24. </select>
  25. <select id="selectConfigList" parameterType="Config" resultMap="ConfigResult">
  26. select config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark from sys_config
  27. <where>
  28. <if test="searchValue != null and searchValue != ''">
  29. AND config_name like concat(concat('%', #{searchValue}), '%') OR config_key like concat(concat('%', #{searchValue}), '%')
  30. </if>
  31. </where>
  32. </select>
  33. <insert id="insertConfig" parameterType="Config">
  34. insert into sys_config (
  35. <if test="configName != null and configName != '' ">config_name,</if>
  36. <if test="configKey != null and configKey != '' ">config_key,</if>
  37. <if test="configValue != null and configValue != '' ">config_value,</if>
  38. <if test="configType != null and configType != '' ">config_type,</if>
  39. <if test="createBy != null and createBy != ''">create_by,</if>
  40. <if test="remark != null and remark != ''">remark,</if>
  41. create_time
  42. )values(
  43. <if test="configName != null and configName != ''">#{configName},</if>
  44. <if test="configKey != null and configKey != ''">#{configKey},</if>
  45. <if test="configValue != null and configValue != ''">#{configValue},</if>
  46. <if test="configType != null and configType != ''">#{configType},</if>
  47. <if test="createBy != null and createBy != ''">#{createBy},</if>
  48. <if test="remark != null and remark != ''">#{remark},</if>
  49. sysdate()
  50. )
  51. </insert>
  52. <update id="updateConfig" parameterType="Config">
  53. update sys_config
  54. <set>
  55. <if test="configName != null and configName != ''">config_name = #{configName},</if>
  56. <if test="configKey != null and configKey != ''">config_key = #{configKey},</if>
  57. <if test="configValue != null and configValue != ''">config_value = #{configValue},</if>
  58. <if test="configType != null and configType != ''">config_type = #{configType},</if>
  59. <if test="updateBy != null and updateBy != ''">update_by = #{updateBy},</if>
  60. <if test="remark != null and remark != ''">remark = #{remark},</if>
  61. update_time = sysdate()
  62. </set>
  63. where config_id = #{configId}
  64. </update>
  65. <delete id="deleteConfigById" parameterType="Integer">
  66. delete from sys_config where config_id = #{value}
  67. </delete>
  68. <delete id="batchDeleteConfig" parameterType="Integer">
  69. delete from sys_config where config_id in
  70. <foreach item="configId" collection="array" open="(" separator="," close=")">
  71. #{configId}
  72. </foreach>
  73. </delete>
  74. </mapper>