From ab5683d94e26cca1c4d42266461213ca5440febb Mon Sep 17 00:00:00 2001 From: sjh Date: Mon, 11 Nov 2024 11:41:35 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E19=E5=8F=B7=E6=A8=A1=E5=9E=8B?= =?UTF-8?q?=EF=BC=9A=E5=88=91=E4=BA=8B=E6=A1=88=E4=BB=B6=E7=AB=8B=E6=A1=88?= =?UTF-8?q?=E5=BD=93=E5=A4=A9=E7=A0=B4=E6=A1=88=E7=9A=84=E5=BC=82=E5=B8=B8?= =?UTF-8?q?=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../biutag/supervision/service/ModelClueService.java | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/biutag/supervision/service/ModelClueService.java b/src/main/java/com/biutag/supervision/service/ModelClueService.java index 240c947..8f5effa 100644 --- a/src/main/java/com/biutag/supervision/service/ModelClueService.java +++ b/src/main/java/com/biutag/supervision/service/ModelClueService.java @@ -243,6 +243,7 @@ public class ModelClueService extends ServiceImpl { List needsInsertIds = new ArrayList<>(); for (String uniqueKey : uniqueKeys) { if (oldUniqueKeys.isEmpty()) { + needsInsertIds.addAll(uniqueKeys); break; } if (!oldUniqueKeys.contains(uniqueKey)) { @@ -299,7 +300,7 @@ public class ModelClueService extends ServiceImpl { modelClue.setInvolvePoliceEmpNo("无警号数据"); } } - if (modelId == 10 || modelId == 11 || modelId == 12 || modelId == 13 || modelId == 14 || modelId == 15) { // 案件基本信息表 + if (modelId == 10 || modelId == 11 || modelId == 12 || modelId == 13 || modelId == 14 || modelId == 15 || modelId == 19) { // 案件基本信息表 String bar1Id = (String) data.get("BAR1ID"); String bar2Id = (String) data.get("BAR2ID"); Map bar1 = bar1Id != null && !bar1Id.isEmpty() ? modelClueDataMapper.selectBAR(bar1Id) : null; @@ -415,6 +416,13 @@ public class ModelClueService extends ServiceImpl { "发现" + modelClue.getInvolveDepartName() + "受理的盗窃性质接警单" + modelClue.getUniqueKey() + ",报警日期为" + getDateMinuteString(data.get("bjsj")) + ",状态为已结案。目前但执法办案系统中未查询到数据,存在刑事盗窃警情未录入执法办案系统的异常情况。"); + } else if (modelId == 19) { // 19号模型:刑事案件立案当天破案的异常数据 + modelClue.setThingDesc( + "发现" + modelClue.getInvolveDepartName() + "受理的“" + data.get("AJMC") + + "”(【" + data.get("AJBZmc") + "】编号:" + getAjbh(data) + + "),立案日期为" + getDateMinuteString(data.get("LARQ")) + + ",破案日期为" + getDateMinuteString(data.get("PARQ")) + + ",立案日期与破案日期间隔不足1天,存在刑事案件立案当天破案的异常情况。"); } }