Commit ce8c557e by guojuxing

联合商户列表状态查询修改

parent e9d7f966
......@@ -196,6 +196,17 @@ public class UnionEnterpriseAuthApiServiceImpl implements UnionEnterpriseAuthApi
List<TabSysUnionEnterpriseAuthResDetail> list = unionEnterpriseAuthResDetailService.listByUnionEnterpriseAuthIdList(unionEnterpriseAuthIdList);
Map<Integer, List<TabSysUnionEnterpriseAuthResDetail>> unionEnterpriseAuthResMap = list
.stream()
.filter(e -> {
if (authStatus != null) {
if (authStatus.equals(e.getAuthStatus())) {
return true;
} else {
return false;
}
} else {
return true;
}
})
.collect(Collectors.groupingBy(TabSysUnionEnterpriseAuthResDetail::getUnionEnterpriseAuthId));
//填充数据
......
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