From d67c65a87bd381005572122520528914550581b0 Mon Sep 17 00:00:00 2001 From: sjh Date: Sat, 16 Nov 2024 19:20:54 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9103=E5=8F=B7=E6=A8=A1?= =?UTF-8?q?=E5=9E=8B=EF=BC=9A=E5=8E=BB=E6=8E=89122=E7=9A=84=E8=AD=A6?= =?UTF-8?q?=E6=83=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/biutag/supervision/service/ModelClueService.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/com/biutag/supervision/service/ModelClueService.java b/src/main/java/com/biutag/supervision/service/ModelClueService.java index e38efd6..5231cb4 100644 --- a/src/main/java/com/biutag/supervision/service/ModelClueService.java +++ b/src/main/java/com/biutag/supervision/service/ModelClueService.java @@ -1034,6 +1034,10 @@ public class ModelClueService extends ServiceImpl { if (supExternalDepart != null) { if (supExternalDepart.getInternalId() != null) { newModelClue.setInvolveDepartId(supExternalDepart.getInternalId()); + StatisticsDepart statisticsDepart = statisticsDepartMapper.selectOne(new QueryWrapper().eq("departId", supExternalDepart.getInternalId()).last("LIMIT 1")); + if (statisticsDepart != null && statisticsDepart.getGroupId() != null && statisticsDepart.getGroupId() == 11L) { + continue; + } } } newModelClue.setData(JSONObject.toJSONString(newMap));