TaskMapper.xml 4.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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.TaskMapper">
  4. <select id="selectByExecute" resultType="java.lang.Long">
  5. select distinct id from blade_task where is_deleted = 0
  6. <if test="param1 != null">
  7. and org_dept_id = #{param1}
  8. </if>
  9. <if test="param2 != null">
  10. and execute_user like concat(concat('%',#{param2}),'%')
  11. </if>
  12. </select>
  13. <select id="selectByUser" resultType="java.lang.Long">
  14. select distinct id from blade_task where is_deleted = 0
  15. and (execute_user like concat(concat('%',#{param}),'%') or create_user =#{param})
  16. </select>
  17. <select id="selectTodayTask" resultType="java.lang.Long">
  18. select distinct id from blade_task where is_deleted = 0 and execute_user like concat(concat('%',#{param1}),'%')
  19. and
  20. DATE_FORMAT(end_time,'%Y-%m-%d') = DATE_FORMAT(#{param2},'%Y-%m-%d') and task_status != 4 and task_status != 5
  21. </select>
  22. <select id="todayTo" resultType="com.wtkj.entity.Task">
  23. select * from blade_task where is_deleted = 0 and execute_user like concat(concat('%',#{param1}),'%')
  24. and
  25. DATE_FORMAT(end_time,'%Y-%m-%d') = DATE_FORMAT(#{param2},'%Y-%m-%d') and task_status != 4 and task_status != 5
  26. order by create_time
  27. </select>
  28. <select id="todayExpire" resultType="com.wtkj.entity.Task">
  29. select * from blade_task where is_deleted = 0 and execute_user like concat(concat('%',#{param1}),'%')
  30. and
  31. DATE_FORMAT(#{param2},'%Y-%m-%d') > DATE_FORMAT(end_time,'%Y-%m-%d') and task_status != 4 and task_status != 5
  32. order by create_time
  33. </select>
  34. <select id="getByOrgDeptId" resultType="com.wtkj.entity.Task">
  35. select * from blade_task where is_deleted = 0 and org_dept_id = #{param1}
  36. <if test="param2 != null">
  37. and DATE_FORMAT(#{param2},'%Y-%m-%d') >= DATE_FORMAT(end_time,'%Y-%m-%d') and task_status != 4 and
  38. task_status != 5
  39. </if>
  40. order by create_time
  41. </select>
  42. <select id="getTodoAndExpireByUserId" resultType="com.wtkj.entity.Task">
  43. select * from blade_task where is_deleted = 0 and execute_user like concat(concat('%',#{param1}),'%')
  44. and
  45. DATE_FORMAT(#{param2},'%Y-%m-%d') >= DATE_FORMAT(end_time,'%Y-%m-%d') and task_status != 4 and task_status != 5
  46. order by create_time
  47. </select>
  48. <select id="getTodayTodoByOrgDeptId" resultType="com.wtkj.entity.Task">
  49. select * from blade_task where is_deleted = 0 and org_dept_id = #{param1} and
  50. DATE_FORMAT(#{param2},'%Y-%m-%d') = DATE_FORMAT(end_time,'%Y-%m-%d') and task_status != 4 and task_status != 5
  51. order by create_time
  52. </select>
  53. <select id="getTodoByYear" resultType="com.wtkj.entity.Task">
  54. select * from blade_task where is_deleted = 0 and year = #{param2} and task_status != 4 and task_status != 5 and
  55. project_id in
  56. <foreach collection="param1" index="index" item="item" open="(" separator="," close=")">
  57. #{item}
  58. </foreach>
  59. </select>
  60. <select id="selectLeftByDateAndStage" resultType="com.wtkj.entity.Task">
  61. select * from blade_task where is_deleted = 0 and stage_id = #{param1} and
  62. DATE_FORMAT(#{param2},'%Y-%m-%d') = DATE_FORMAT(end_time,'%Y-%m-%d') and task_status != 4 and task_status != 5
  63. </select>
  64. <select id="selectByDateAndStageAndStatus" resultType="com.wtkj.entity.Task">
  65. select * from blade_task where is_deleted = 0 and stage_id = #{param1} and
  66. DATE_FORMAT(#{param2},'%Y-%m-%d') = DATE_FORMAT(end_time,'%Y-%m-%d') and task_status = #{param3}
  67. </select>
  68. <select id="selectCurrentDateCompleteByStageAndDate" resultType="com.wtkj.entity.Task">
  69. select * from blade_task where is_deleted = 0 and stage_id = #{param1} and
  70. DATE_FORMAT(#{param2},'%Y-%m-%d') = DATE_FORMAT(confirm_time,'%Y-%m-%d')
  71. <if test="param3 != null">
  72. and task_status = #{param3}
  73. </if>
  74. </select>
  75. <select id="getTodayToExpire" resultType="com.wtkj.entity.Task">
  76. select * from blade_task where is_deleted = 0 and
  77. DATE_FORMAT(#{param},'%Y-%m-%d') > DATE_FORMAT(end_time,'%Y-%m-%d') and task_status != 4 and task_status != 5
  78. </select>
  79. </mapper>