From c3bfa381bfec2372c91f8c17f6f8cbf48fbd284d Mon Sep 17 00:00:00 2001 From: Pu Zhibing <393733352@qq.com> Date: 星期五, 30 五月 2025 14:11:48 +0800 Subject: [PATCH] 修改配置文件 --- guns-admin/src/main/java/com/stylefeng/guns/modular/system/dao/mapping/TaskDetailMapper.xml | 47 ++++++++++++++++++++++++++++++++++++++++------- 1 files changed, 40 insertions(+), 7 deletions(-) diff --git a/guns-admin/src/main/java/com/stylefeng/guns/modular/system/dao/mapping/TaskDetailMapper.xml b/guns-admin/src/main/java/com/stylefeng/guns/modular/system/dao/mapping/TaskDetailMapper.xml index b2bcfee..ded1057 100644 --- a/guns-admin/src/main/java/com/stylefeng/guns/modular/system/dao/mapping/TaskDetailMapper.xml +++ b/guns-admin/src/main/java/com/stylefeng/guns/modular/system/dao/mapping/TaskDetailMapper.xml @@ -9,15 +9,30 @@ b.`name`, b.type, a.status, + ifnull(c.num, 0) as vehicleNum, DATE_FORMAT(a.execution_time, '%Y-%m-%d %H:%i:%s') as executionTime from t_task_detail a left join t_patrol_task b on (a.patrol_task_id = b.id) + left join (select task_detail_id, count(1) as num from t_task_detail_vehicles group by task_detail_id) c on (a.id = c.task_detail_id) where a.del_flag = 0 <if test="null != item.code and '' != item.code"> and a.code like CONCAT('%', #{item.code}, '%') </if> - <if test="null != item.status"> - and a.status = #{item.status} + + <if test="null != item.status and item.status.size() > 0"> + and a.status in + <foreach collection="item.status" item="item" index="index" open="(" separator="," close=")"> + #{item} + </foreach> + </if> + <if test="null != item.type"> + and b.type = #{item.type} + </if> + <if test="null != item.name and '' != item.name"> + and b.name like CONCAT('%', #{item.name}, '%') + </if> + <if test="null != item.startTime and null != item.endTime"> + and a.execution_time between #{item.startTime} and #{item.endTime} </if> order by a.execution_time desc </select> @@ -49,8 +64,20 @@ <if test="null != item.code and '' != item.code"> and a.code like CONCAT('%', #{item.code}, '%') </if> - <if test="null != item.status"> - and a.status = #{item.status} + <if test="null != item.status and item.status.size() > 0"> + and a.status in + <foreach collection="item.status" item="item" index="index" open="(" separator="," close=")"> + #{item} + </foreach> + </if> + <if test="null != item.type"> + and b.type = #{item.type} + </if> + <if test="null != item.name and '' != item.name"> + and b.name like CONCAT('%', #{item.name}, '%') + </if> + <if test="null != item.startTime and null != item.endTime"> + and a.execution_time between #{item.startTime} and #{item.endTime} </if> order by a.execution_time desc </select> @@ -75,7 +102,7 @@ from t_task_detail_vehicles a left join t_task_detail b on (a.task_detail_id = b.id) left join t_patrol_task c on (a.patrol_task_id = c.id) - left join t_task_detail_vehicles_channel d on (a.id = d.task_detail_vehicles_id and d.video_channel = 1) + left join t_task_detail_vehicles_channel d on (a.id = d.task_detail_vehicles_id) left join sys_user e on (d.artificial_user_id = e.id) where b.del_flag = 0 <if test="null != ids and ids.size() > 0"> @@ -87,8 +114,14 @@ <if test="null != code and '' != code"> and b.code like CONCAT('%', #{code}, '%') </if> - <if test="null != status"> - and b.status = #{status} + <if test="null != status and status.size() > 0"> + and b.status in + <foreach collection="status" item="item" index="index" open="(" separator="," close=")"> + #{item} + </foreach> + </if> + <if test="null != sysStatus"> + and d.sys_status = #{sysStatus} </if> order by b.execution_time desc </select> -- Gitblit v1.7.1