TaImagesMapper.xml 548B

1234567891011121314151617
  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.yunzhi.nanyang.mapper.TaImagesMapper">
  4. <select id="getListBy" resultType="com.yunzhi.nanyang.entity.TaImages">
  5. SELECT
  6. *
  7. FROM
  8. ta_images t
  9. WHERE
  10. t.target_type = #{targetType}
  11. AND t.target_id = #{targetId}
  12. AND t.`status` = 1
  13. ORDER BY
  14. t.create_date ASC
  15. </select>
  16. </mapper>