TWhitelistMapper.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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.slibra.business.mapper.TWhitelistMapper">
  6. <resultMap type="TWhitelist" id="TWhitelistResult">
  7. <result property="id" column="id" />
  8. <result property="phone" column="phone" />
  9. <result property="description" column="description" />
  10. <result property="delFlag" column="del_flag" />
  11. <result property="revision" column="revision" />
  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. <result property="remark" column="remark" />
  17. </resultMap>
  18. <sql id="selectTWhitelistVo">
  19. select id, phone, description, del_flag, revision, create_by, create_time, update_by, update_time, remark from t_whitelist
  20. </sql>
  21. <select id="selectTWhitelistList" parameterType="TWhitelist" resultMap="TWhitelistResult">
  22. <include refid="selectTWhitelistVo"/>
  23. <where>
  24. 1 = 1
  25. <if test="phone != null and phone != ''"> and phone = #{phone}</if>
  26. <if test="description != null and description != ''"> and description = #{description}</if>
  27. <if test="revision != null "> and revision = #{revision}</if>
  28. </where>
  29. and del_flag = 0 order by id desc
  30. </select>
  31. <select id="selectTWhitelistById" parameterType="Long" resultMap="TWhitelistResult">
  32. <include refid="selectTWhitelistVo"/>
  33. where id = #{id} and del_flag = 0
  34. </select>
  35. <insert id="insertTWhitelist" parameterType="TWhitelist" useGeneratedKeys="true" keyProperty="id">
  36. insert into t_whitelist
  37. <trim prefix="(" suffix=")" suffixOverrides=",">
  38. <if test="phone != null and phone != ''">phone,</if>
  39. <if test="description != null">description,</if>
  40. <if test="delFlag != null">del_flag,</if>
  41. <if test="revision != null">revision,</if>
  42. <if test="createBy != null">create_by,</if>
  43. <if test="createTime != null">create_time,</if>
  44. <if test="updateBy != null">update_by,</if>
  45. <if test="updateTime != null">update_time,</if>
  46. <if test="remark != null">remark,</if>
  47. </trim>
  48. <trim prefix="values (" suffix=")" suffixOverrides=",">
  49. <if test="phone != null and phone != ''">#{phone},</if>
  50. <if test="description != null">#{description},</if>
  51. <if test="delFlag != null">#{delFlag},</if>
  52. <if test="revision != null">#{revision},</if>
  53. <if test="createBy != null">#{createBy},</if>
  54. <if test="createTime != null">#{createTime},</if>
  55. <if test="updateBy != null">#{updateBy},</if>
  56. <if test="updateTime != null">#{updateTime},</if>
  57. <if test="remark != null">#{remark},</if>
  58. </trim>
  59. </insert>
  60. <update id="updateTWhitelist" parameterType="TWhitelist">
  61. update t_whitelist
  62. <trim prefix="SET" suffixOverrides=",">
  63. <if test="phone != null and phone != ''">phone = #{phone},</if>
  64. <if test="description != null">description = #{description},</if>
  65. <if test="delFlag != null">del_flag = #{delFlag},</if>
  66. <if test="revision != null">revision = #{revision},</if>
  67. <if test="createBy != null">create_by = #{createBy},</if>
  68. <if test="createTime != null">create_time = #{createTime},</if>
  69. <if test="updateBy != null">update_by = #{updateBy},</if>
  70. <if test="updateTime != null">update_time = #{updateTime},</if>
  71. <if test="remark != null">remark = #{remark},</if>
  72. </trim>
  73. ,revision = revision + 1
  74. where id = #{id}
  75. </update>
  76. <delete id="deleteTWhitelistById" parameterType="Long">
  77. update t_whitelist set del_flag = 2,revision = revision + 1 where del_flag = 0 and id = #{id}
  78. </delete>
  79. <delete id="deleteTWhitelistByIds" parameterType="String">
  80. update t_whitelist set del_flag = 2,revision = revision + 1 where del_flag = 0 and id in
  81. <foreach item="id" collection="array" open="(" separator="," close=")">
  82. #{id}
  83. </foreach>
  84. </delete>
  85. <!-- 2024年11月12日10:52:37 下面是新增的SQL,不允许覆盖 -->
  86. <select id="getUniquePhoneButNoThis" parameterType="com.slibra.business.domain.TWhitelist" resultType="string">
  87. SELECT
  88. id
  89. FROM
  90. t_whitelist
  91. WHERE
  92. phone = #{phone}
  93. AND id != #{id}
  94. AND del_flag = 0
  95. limit 1
  96. </select>
  97. </mapper>