|
|
|
@ -132,9 +132,13 @@
|
|
|
|
|
</select> |
|
|
|
|
|
|
|
|
|
<select id="getListPage" parameterType="com.hnac.hzinfo.inspect.task.vo.TaskListQuery" resultType="com.hnac.hzinfo.inspect.task.vo.TaskVo"> |
|
|
|
|
SELECT t.*,u.USER_ID from HZ_ST_EX_TASK t |
|
|
|
|
LEFT JOIN HZ_ST_EX_TASK_USER u on t.ID=u.TASK_ID |
|
|
|
|
where t.IS_DELETED=0 and u.IS_DELETED=0 |
|
|
|
|
SELECT |
|
|
|
|
t.*, u.USER_ID |
|
|
|
|
from |
|
|
|
|
HZ_ST_EX_TASK t |
|
|
|
|
left join HZ_ST_EX_TASK_USER u on t.ID = u.TASK_ID |
|
|
|
|
where |
|
|
|
|
t.IS_DELETED = 0 and u.IS_DELETED = 0 |
|
|
|
|
<if test="task.dutyId != null "> |
|
|
|
|
and t.DUTY_ID = #{task.dutyId} |
|
|
|
|
</if> |
|
|
|
@ -174,14 +178,15 @@
|
|
|
|
|
<if test="task.taskIds != null and task.taskIds != ''"> |
|
|
|
|
and FIND_IN_SET(t.ID, #{task.taskIds}) |
|
|
|
|
</if> |
|
|
|
|
<if test="task.areaId != null"> |
|
|
|
|
and t.CREATE_DEPT = #{task.areaId} |
|
|
|
|
<if test="task.createDept != null"> |
|
|
|
|
and t.CREATE_DEPT = #{task.createDept} |
|
|
|
|
</if> |
|
|
|
|
<if test="task.yearMonth != null"> |
|
|
|
|
and date_format(t.PLAN_START_TIME,'%Y-%m') = #{task.yearMonth} |
|
|
|
|
</if> |
|
|
|
|
order by t.UPDATE_TIME desc |
|
|
|
|
</select> |
|
|
|
|
|
|
|
|
|
<select id="getAllPageList" parameterType="com.hnac.hzinfo.inspect.task.vo.TaskListQuery" resultType="com.hnac.hzinfo.inspect.task.vo.TaskVo"> |
|
|
|
|
SELECT |
|
|
|
|
t.*, b.USER_ID as userIds, |
|
|
|
|