|
@@ -11,6 +11,8 @@ import java.util.Map;
|
|
|
import java.util.Set;
|
|
|
import java.util.stream.Collectors;
|
|
|
|
|
|
+import cn.hutool.core.util.EnumUtil;
|
|
|
+import com.persagy.proxy.adm.constant.SpaceTypeEnum;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
@@ -714,6 +716,15 @@ public class RelationReportService implements IRelationReportService {
|
|
|
result.put("createTime", creationTime == null ? null : new DateTime(creationTime).toString());
|
|
|
result.put("mainObject", relationDefine.getFromObjType());
|
|
|
result.put("fromObject", relationDefine.getToObjType());
|
|
|
+ // 空间分区
|
|
|
+ String zoneType = relationProject.has("zoneType") ? relationProject.get("zoneType").asText() : null;
|
|
|
+ if (StrUtil.isNotBlank(zoneType)){
|
|
|
+ SpaceTypeEnum spaceTypeEnum = EnumUtil.fromString(SpaceTypeEnum.class, zoneType);
|
|
|
+ if (null!=spaceTypeEnum){
|
|
|
+ result.put("zoneType",spaceTypeEnum.getCode());
|
|
|
+ result.put("relationTypeName",StrUtil.replace(result.getString("relationTypeName"),"业务空间",spaceTypeEnum.getDesc()));
|
|
|
+ }
|
|
|
+ }
|
|
|
return result;
|
|
|
}
|
|
|
|