Commit 5085f50d by guojuxing

提供账号分组需要的接口

parent f6aa9555
......@@ -55,7 +55,7 @@ public class UnionEnterpriseAuthServiceImpl implements UnionEnterpriseAuthServic
//账号分组不能同时授权多个商户
for (TabSysUnionEnterpriseAuth temp : list) {
String accountGroup = temp.getAccountGroup();
if (Arrays.stream(accountGroup.split(",")).anyMatch(e -> Objects.equals(accountGroupId, e))) {
if (Arrays.stream(accountGroup.split(",")).anyMatch(e -> Objects.equals(accountGroupId.toString(), e))) {
return temp.getUnionEnterpriseId();
}
}
......
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