Commit d936e125 by xugaojun

存量会员:代码优化

parent cbf6f281
......@@ -144,6 +144,9 @@ public class WxEnterpriseApiServiceImpl implements WxEnterpriseApiService {
}
private boolean matchWxEnterpriseIdWhiteList(String wxEnterpriseId) {
if (StringUtils.isEmpty(wxEnterpriseId)) {
return false;
}
// 匹配微信企业id白名单
String whiteList = config.getHistoryMbrMassEnterpriseWhiteList();
if (StringUtils.isEmpty(whiteList)) {
......@@ -155,6 +158,9 @@ public class WxEnterpriseApiServiceImpl implements WxEnterpriseApiService {
}
private boolean matchOperId(String loginUserId) {
if (StringUtils.isEmpty(loginUserId)) {
return false;
}
// 匹配运营id白名单
String whiteList = config.getHistoryMbrMassOperWhiteList();
if (StringUtils.isEmpty(whiteList)) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment