1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
- <mapper namespace="com.wtkj.mapper.TaskMapper">
- <select id="selectByExecute" resultType="java.lang.Long">
- select distinct id from blade_task where is_deleted = 0
- <if test="param1 != null">
- and org_dept_id = #{param1}
- </if>
- <if test="param2 != null">
- and execute_user like concat(concat('%',#{param2}),'%')
- </if>
- </select>
- <select id="selectByUser" resultType="java.lang.Long">
- select distinct id from blade_task where is_deleted = 0
- and (execute_user like concat(concat('%',#{param}),'%') or create_user =#{param})
- </select>
- <select id="selectTodayTask" resultType="java.lang.Long">
- select distinct id from blade_task where is_deleted = 0 and execute_user like concat(concat('%',#{param1}),'%')
- and
- DATE_FORMAT(end_time,'%Y-%m-%d') = DATE_FORMAT(#{param2},'%Y-%m-%d') and task_status != 4 and task_status != 5
- </select>
- <select id="todayTo" resultType="com.wtkj.entity.Task">
- select * from blade_task where is_deleted = 0 and execute_user like concat(concat('%',#{param1}),'%')
- and
- DATE_FORMAT(end_time,'%Y-%m-%d') = DATE_FORMAT(#{param2},'%Y-%m-%d') and task_status != 4 and task_status != 5
- order by create_time
- </select>
- <select id="todayExpire" resultType="com.wtkj.entity.Task">
- select * from blade_task where is_deleted = 0 and execute_user like concat(concat('%',#{param1}),'%')
- and
- DATE_FORMAT(#{param2},'%Y-%m-%d') > DATE_FORMAT(end_time,'%Y-%m-%d') and task_status != 4 and task_status != 5
- order by create_time
- </select>
- <select id="getByOrgDeptId" resultType="com.wtkj.entity.Task">
- select * from blade_task where is_deleted = 0 and org_dept_id = #{param1}
- <if test="param2 != null">
- and DATE_FORMAT(#{param2},'%Y-%m-%d') >= DATE_FORMAT(end_time,'%Y-%m-%d') and task_status != 4 and
- task_status != 5
- </if>
- order by create_time
- </select>
- <select id="getTodoAndExpireByUserId" resultType="com.wtkj.entity.Task">
- select * from blade_task where is_deleted = 0 and execute_user like concat(concat('%',#{param1}),'%')
- and
- DATE_FORMAT(#{param2},'%Y-%m-%d') >= DATE_FORMAT(end_time,'%Y-%m-%d') and task_status != 4 and task_status != 5
- order by create_time
- </select>
- <select id="getTodayTodoByOrgDeptId" resultType="com.wtkj.entity.Task">
- select * from blade_task where is_deleted = 0 and org_dept_id = #{param1} and
- DATE_FORMAT(#{param2},'%Y-%m-%d') = DATE_FORMAT(end_time,'%Y-%m-%d') and task_status != 4 and task_status != 5
- order by create_time
- </select>
- <select id="getTodoByYear" resultType="com.wtkj.entity.Task">
- select * from blade_task where is_deleted = 0 and year = #{param2} and task_status != 4 and task_status != 5 and
- project_id in
- <foreach collection="param1" index="index" item="item" open="(" separator="," close=")">
- #{item}
- </foreach>
- </select>
- <select id="selectLeftByDateAndStage" resultType="com.wtkj.entity.Task">
- select * from blade_task where is_deleted = 0 and stage_id = #{param1} and
- DATE_FORMAT(#{param2},'%Y-%m-%d') = DATE_FORMAT(end_time,'%Y-%m-%d') and task_status != 4 and task_status != 5
- </select>
- <select id="selectByDateAndStageAndStatus" resultType="com.wtkj.entity.Task">
- select * from blade_task where is_deleted = 0 and stage_id = #{param1} and
- DATE_FORMAT(#{param2},'%Y-%m-%d') = DATE_FORMAT(end_time,'%Y-%m-%d') and task_status = #{param3}
- </select>
- <select id="selectCurrentDateCompleteByStageAndDate" resultType="com.wtkj.entity.Task">
- select * from blade_task where is_deleted = 0 and stage_id = #{param1} and
- DATE_FORMAT(#{param2},'%Y-%m-%d') = DATE_FORMAT(confirm_time,'%Y-%m-%d')
- <if test="param3 != null">
- and task_status = #{param3}
- </if>
- </select>
- <select id="getTodayToExpire" resultType="com.wtkj.entity.Task">
- select * from blade_task where is_deleted = 0 and
- DATE_FORMAT(#{param},'%Y-%m-%d') > DATE_FORMAT(end_time,'%Y-%m-%d') and task_status != 4 and task_status != 5
- </select>
- </mapper>
|