فهرست منبع

Merge branch 'develop' of http://39.106.8.246:3003/BDTP/adm-middleware into develop

yucheng 3 سال پیش
والد
کامیت
ead74b1a14
1فایلهای تغییر یافته به همراه2 افزوده شده و 1 حذف شده
  1. 2 1
      src/main/java/com/persagy/proxy/adm/service/impl/RelationReportService.java

+ 2 - 1
src/main/java/com/persagy/proxy/adm/service/impl/RelationReportService.java

@@ -758,13 +758,14 @@ 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());
+		result.put("prompting", relationDefine.getPrompting());
 		// 空间分区
 		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("note",spaceTypeEnum.getDesc());
+				result.put("note",relationDefine.getRemark());
 				result.put("relationTypeName",StrUtil.replace(result.getString("relationTypeName"),"业务空间",spaceTypeEnum.getDesc()));
 			}
 		}