Commit a0205c2c authored by xxxxxwwwww's avatar xxxxxwwwww

修改

parent 7af6bde3
......@@ -159,7 +159,7 @@ public class ApiBasicManagementServiceImpl extends ServiceImpl<ApiBasicManagemen
List<OcpGroupBaseDto> ocpApiGroups = ocpApiGroupMapper.apiTree(apiGroupCompanyCode, apiGroupPcode, apiGroupPromotionType);
ArrayList<OcpGroupBaseDto> list = new ArrayList<>();
for (OcpGroupBaseDto ocpApiGroup : ocpApiGroups) {
if (StringUtils.isNotBlank(ocpApiGroup.getApiCode())&&StringUtils.isNotBlank(ocpApiGroup.getApiName())){
if (StringUtils.isNotBlank(ocpApiGroup.getApiGroupCode())&&StringUtils.isNotBlank(ocpApiGroup.getApiGroupName())){
list.add(ocpApiGroup);
}
}
......
......@@ -264,7 +264,7 @@ public class TenantBasicManagementServiceImpl extends ServiceImpl<TenantBasicMan
List<GroupDto> ocpTenantGroups = ocpTenantGroupMapper.tenantBaseTreeOther(tenantGroupCode, tenantGroupCompanyCode);
List<GroupDto> list = new ArrayList<>();
for (GroupDto ocpTenantGroup : ocpTenantGroups) {
if (StringUtils.isNotBlank(ocpTenantGroup.getTenantCode())&&StringUtils.isNotBlank(ocpTenantGroup.getTenantName())){
if (StringUtils.isNotBlank(ocpTenantGroup.getTenantGroupCode())&&StringUtils.isNotBlank(ocpTenantGroup.getTenantGroupName())){
list.add(ocpTenantGroup);
}
}
......
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