TaskContractMapper.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132
  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.wtkj.mapper.TaskContractMapper">
  4. <select id="selectByTaskId" resultType="com.wtkj.entity.TaskContract">
  5. select * from blade_task_contract where is_deleted = 0 and task_id = #{param1} order by create_time desc;
  6. </select>
  7. <select id="getByProjectIds" resultType="com.wtkj.entity.TaskContract">
  8. select * from blade_task_contract where is_deleted = 0 and project_id in
  9. <foreach collection="param" index="index" item="item" open="(" separator="," close=")">
  10. #{item}
  11. </foreach>
  12. </select>
  13. <select id="getByOrgDeptId" resultType="com.wtkj.entity.TaskContract">
  14. select * from blade_task_contract where is_deleted = 0
  15. <if test="param1 != null">
  16. and org_dept_id = #{param1}
  17. </if>
  18. <if test="param2 != null">
  19. and year = #{param2}
  20. </if>
  21. <if test="param3 != null">
  22. and task_id in
  23. <foreach collection="param3" index="index" item="item" open="(" separator="," close=")">
  24. #{item}
  25. </foreach>
  26. </if>
  27. order by create_time desc;
  28. </select>
  29. </mapper>