From 48d9f77e2ec066da96174ea31ad25161f28af69a Mon Sep 17 00:00:00 2001 From: buaixuexideshitongxue <2936013465@qq.com> Date: Tue, 20 Jan 2026 17:41:44 +0800 Subject: [PATCH] =?UTF-8?q?fix-=E7=8E=B0=E5=9C=BA=E4=B8=93=E9=A1=B9?= =?UTF-8?q?=E4=BA=8C=E7=BA=A7=E5=A4=A7=E5=B1=8F--=E9=BB=84=E6=AF=92?= =?UTF-8?q?=E8=AD=A6=E6=83=85=E4=B8=80=E5=88=97tab=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E4=B8=8D=E5=AF=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../biutag/supervision/mapper/NegativeMapper.java | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/src/main/java/com/biutag/supervision/mapper/NegativeMapper.java b/src/main/java/com/biutag/supervision/mapper/NegativeMapper.java index 595824b..2770bf4 100644 --- a/src/main/java/com/biutag/supervision/mapper/NegativeMapper.java +++ b/src/main/java/com/biutag/supervision/mapper/NegativeMapper.java @@ -870,8 +870,7 @@ public interface NegativeMapper extends BaseMapper { "ROUND( COUNT( DISTINCT IF(ng.processing_status='completed', ng.id, NULL) )/COUNT( DISTINCT ng.id )*100, 1) AS correctionRate " + "FROM negative ng " + "LEFT JOIN sup_depart sd ON ng.involveDepartId=sd.id " + - "WHERE problemSourcesCode IN (15) " + - "AND ng.special_supervision=#{specialType} " + + "WHERE ng.special_supervision=#{specialType} " + "AND ng.second_involve_depart_id=#{departId} " + "AND sd.statistics_group_id=10 " + "AND crtTime BETWEEN #{beginTime} AND #{endTime}; ") @@ -884,8 +883,7 @@ public interface NegativeMapper extends BaseMapper { "ROUND( COUNT( DISTINCT IF(ng.processing_status='completed', ng.id, NULL) )/COUNT( DISTINCT ng.id )*100, 1) AS correctionRate " + "FROM negative ng " + "LEFT JOIN sup_depart sd ON ng.involveDepartId=sd.id " + - "WHERE problemSourcesCode IN (15) " + - "AND ng.special_supervision=#{specialType} " + + "WHERE ng.special_supervision=#{specialType} " + "AND ng.second_involve_depart_id=#{departId} " + "AND sd.statistics_group_id!=10 " + "AND crtTime BETWEEN #{beginTime} AND #{endTime}; ") @@ -896,8 +894,7 @@ public interface NegativeMapper extends BaseMapper { "COUNT( DISTINCT ng.id ) AS `value` " + "FROM negative ng " + "LEFT JOIN sup_depart sd ON ng.involveDepartId=sd.id " + - "WHERE problemSourcesCode IN (15) " + - "AND ng.special_supervision=#{specialType} " + + "WHERE ng.special_supervision=#{specialType} " + "AND ng.second_involve_depart_id=#{departId} " + "AND sd.statistics_group_id=10 " + "AND crtTime BETWEEN #{beginTime} AND #{endTime} " + @@ -910,8 +907,7 @@ public interface NegativeMapper extends BaseMapper { "COUNT( DISTINCT ng.id ) AS `value` " + "FROM negative ng " + "LEFT JOIN sup_depart sd ON ng.involveDepartId=sd.id " + - "WHERE problemSourcesCode IN (15) " + - "AND ng.special_supervision=#{specialType} " + + "WHERE ng.special_supervision=#{specialType} " + "AND ng.second_involve_depart_id=#{departId} " + "AND sd.statistics_group_id!=10 " + "AND crtTime BETWEEN #{beginTime} AND #{endTime} " +