CustomerServiceReceiveMapper.xml 932 B

12345678910111213141516171819202122232425262728
  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.yonge.cooleshow.biz.dal.mapper.CustomerServiceReceiveMapper">
  4. <!-- 表字段 -->
  5. <sql id="baseColumns">
  6. t.id_ AS id
  7. , t.batch_sending_id_ AS batchSendingId
  8. , t.user_id_ AS userId
  9. , t.client_type_ AS clientType
  10. , t.create_time_ AS createTime
  11. </sql>
  12. <select id="selectPage" resultType="com.yonge.cooleshow.biz.dal.wrapper.im.CustomerServiceReceiveWrapper$CustomerServiceReceive">
  13. SELECT
  14. <include refid="baseColumns" />
  15. FROM customer_service_receive t
  16. <where>
  17. <if test="param.batchSendingId != null">
  18. AND t.batch_sending_id_ = #{param.batchSendingId}
  19. </if>
  20. </where>
  21. ORDER BY t.id_ DESC
  22. </select>
  23. </mapper>