From 4834696a6c5fb24ef9da96e3105e037ea8d1b2dc Mon Sep 17 00:00:00 2001 From: liuchengqian Date: Thu, 16 Mar 2023 11:33:25 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E8=AE=A2=E9=98=85=E6=9B=B4?= =?UTF-8?q?=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/xkrs/helper/FirePointSubscribeManager.java | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/main/java/com/xkrs/helper/FirePointSubscribeManager.java b/src/main/java/com/xkrs/helper/FirePointSubscribeManager.java index f3144bb..3dc51b7 100644 --- a/src/main/java/com/xkrs/helper/FirePointSubscribeManager.java +++ b/src/main/java/com/xkrs/helper/FirePointSubscribeManager.java @@ -123,12 +123,6 @@ public class FirePointSubscribeManager { private List obtainCountyCodeList(List sysUserEntityList) { List countyCodeList = new ArrayList<>(); for (SysUserEntity sysUserEntity : sysUserEntityList) { - if (sysUserEntity.getActiveFlag() != 0) {//被禁用的用户不计入订阅 - continue; - } - if (sysUserEntity.getReceiveSms() != 1) {//关掉开关的用户不计入订阅 - continue; - } if ("管理员".equals(sysUserEntity.getAccountType())) {//管理员用户不计入订阅 continue; }