From 9b55891e6dd57bc244e6c5654434b32e05c83496 Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期三, 25 九月 2024 15:10:25 +0800 Subject: [PATCH] 异常监控排除已经审核过的工单作为状态 --- ycl-server/src/main/resources/mapper/zgyw/CheckIndexVideoMapper.xml | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/ycl-server/src/main/resources/mapper/zgyw/CheckIndexVideoMapper.xml b/ycl-server/src/main/resources/mapper/zgyw/CheckIndexVideoMapper.xml index c6d6db9..c66973c 100644 --- a/ycl-server/src/main/resources/mapper/zgyw/CheckIndexVideoMapper.xml +++ b/ycl-server/src/main/resources/mapper/zgyw/CheckIndexVideoMapper.xml @@ -178,8 +178,14 @@ AND dept_id = #{deptId} </if> <if test="dataScope == 1"> + AND examine_tag = 0 + </if> + <if test="dataScope == 2"> AND examine_tag = 1 </if> + <if test="dataScope == 3"> + AND examine_tag = 2 + </if> </where> ORDER BY create_time DESC -- Gitblit v1.8.0