Browse Source

修改103号模型:去掉122的警情

main
sjh 1 year ago
parent
commit
d67c65a87b
  1. 4
      src/main/java/com/biutag/supervision/service/ModelClueService.java

4
src/main/java/com/biutag/supervision/service/ModelClueService.java

@ -1034,6 +1034,10 @@ public class ModelClueService extends ServiceImpl<ModelClueMapper, ModelClue> {
if (supExternalDepart != null) {
if (supExternalDepart.getInternalId() != null) {
newModelClue.setInvolveDepartId(supExternalDepart.getInternalId());
StatisticsDepart statisticsDepart = statisticsDepartMapper.selectOne(new QueryWrapper<StatisticsDepart>().eq("departId", supExternalDepart.getInternalId()).last("LIMIT 1"));
if (statisticsDepart != null && statisticsDepart.getGroupId() != null && statisticsDepart.getGroupId() == 11L) {
continue;
}
}
}
newModelClue.setData(JSONObject.toJSONString(newMap));

Loading…
Cancel
Save