Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 

75 строки
2.1 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="com.simple.mapper.WxMsgModelMapper">
  4. <resultMap id="BaseResultMap" type="com.simple.domain.po.WxMsgModel">
  5. <id column="id" jdbcType="BIGINT" property="id" />
  6. <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" />
  7. <result column="name" jdbcType="VARCHAR" property="name" />
  8. <result column="signature" jdbcType="VARCHAR" property="signature" />
  9. <result column="content" jdbcType="VARCHAR" property="content" />
  10. <result column="createtime" jdbcType="TIMESTAMP" property="createtime" />
  11. <result column="status" jdbcType="INTEGER" property="status" />
  12. </resultMap>
  13. <sql id="allColumns">
  14. `id`,`tenant_id`,`name`,`signature`,`content`,`createtime`,`status`
  15. </sql>
  16. <sql id="dynamicWhereConditions">
  17. where 1 = 1
  18. <if test=" null != id ">
  19. and `id` = #{id}
  20. </if>
  21. <if test=" null != tenantId ">
  22. and `tenant_id` like concat('%', #{tenantId},'%')
  23. </if>
  24. <if test=" null != name ">
  25. and `name` like concat('%', #{name},'%')
  26. </if>
  27. <if test=" null != signature ">
  28. and `signature` like concat('%', #{signature},'%')
  29. </if>
  30. <if test=" null != content ">
  31. and `content` like concat('%', #{content},'%')
  32. </if>
  33. <if test=" null != createtime ">
  34. and `createtime` = #{createtime}
  35. </if>
  36. <if test=" null != status ">
  37. and `status` = #{status}
  38. </if>
  39. <if test=" null != ids ">
  40. and id in
  41. <foreach collection="ids" index="index" item="idItem" open="(" separator="," close=")">
  42. #{idItem}
  43. </foreach>
  44. </if>
  45. <if test=" null != sortColumns"> order by ${sortColumns} </if>
  46. </sql>
  47. <select id="findList" parameterType="com.simple.domain.po.WxMsgModel" resultMap="BaseResultMap">
  48. select <include refid="allColumns" /> from wx_msg_model
  49. <include refid="dynamicWhereConditions" />
  50. </select>
  51. </mapper>