|
@@ -22,6 +22,7 @@ import com.persagy.proxy.adm.request.AdmCreateRequest;
|
|
|
import com.persagy.proxy.adm.request.AdmQueryCriteria;
|
|
|
import com.persagy.proxy.adm.request.AdmResponse;
|
|
|
import com.persagy.proxy.adm.service.IAdmBuildingService;
|
|
|
+import com.persagy.proxy.adm.service.IAdmDictService;
|
|
|
import com.persagy.proxy.adm.service.IAdmFloorService;
|
|
|
import com.persagy.proxy.adm.service.IAdmSystemService;
|
|
|
import com.persagy.proxy.adm.utils.AdmQueryCriteriaHelper;
|
|
@@ -54,6 +55,8 @@ public class AdmSystemController {
|
|
|
private IAdmBuildingService buildingService;
|
|
|
@Autowired
|
|
|
private IAdmFloorService floorService;
|
|
|
+ @Autowired
|
|
|
+ private IAdmDictService dictService;
|
|
|
@Value("${middleware.group.code}")
|
|
|
private String groupCode;
|
|
|
|
|
@@ -206,7 +209,25 @@ public class AdmSystemController {
|
|
|
// 组装上下文条件
|
|
|
InstanceUrlParam context = new InstanceUrlParam(groupCode, null, projectId, AdmCommonConstant.APP_ID);
|
|
|
request.setName(AdmSystem.OBJ_TYPE);
|
|
|
- return service.doQuery(context, request, AdmSystem.class);
|
|
|
+ AdmResponse admResponse = service.doQuery(context, request, AdmSystem.class);
|
|
|
+ List<AdmSystem> systemList = (List<AdmSystem>) admResponse.getContent();
|
|
|
+ if(CollUtil.isNotEmpty(systemList)){
|
|
|
+ AdmDict admDict = new AdmDict();
|
|
|
+ admDict.setType(AdmSystem.OBJ_TYPE);
|
|
|
+ AdmResponse admResponseDic = dictService.queryCategory(context, admDict, AdmObjectType.class);
|
|
|
+ if(CollUtil.isNotEmpty(admResponseDic.getContent())){
|
|
|
+ List<AdmObjectType> admDictList = (List<AdmObjectType>) admResponseDic.getContent();
|
|
|
+ Map<String, AdmObjectType> admDictMap = CollUtil.fieldValueMap(admDictList, "code");
|
|
|
+ systemList.stream().forEach(admSystem -> {
|
|
|
+ if(admDictMap.keySet().contains(admSystem.getClassCode())){
|
|
|
+ AdmObjectType admDictTemp = admDictMap.get(admSystem.getClassCode());
|
|
|
+ admSystem.setCategoryName(admDictTemp.getName());
|
|
|
+ }
|
|
|
+ });
|
|
|
+ admResponse.setContent(systemList);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return admResponse;
|
|
|
}
|
|
|
|
|
|
|