CompanyAbutLkMapper.xml 613 B

123456789101112131415161718
  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="cn.ubitech.ttc.dao.CompanyAbutLkMapper">
  4. <!-- 开启二级缓存 -->
  5. <cache type="org.mybatis.caches.ehcache.LoggingEhcache"/>
  6. <select id="getDemandRewardByTaskId" resultType="cn.ubitech.ttc.entity.DemandReward">
  7. SELECT
  8. d.*
  9. FROM
  10. demand_reward d
  11. inner join resourcelibrary r
  12. on d.resid = r.id
  13. WHERE
  14. r.otherid = ${taskid}
  15. and d.restype = 1
  16. </select>
  17. </mapper>