|
@@ -4,8 +4,6 @@ import java.util.List;
|
|
|
import java.util.Map;
|
|
|
import java.util.Set;
|
|
|
|
|
|
-import com.persagy.dmp.simple.client.DigitalObjectSimpleFacade;
|
|
|
-import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
@@ -24,17 +22,15 @@ import com.persagy.dmp.digital.client.DigitalObjectFacade;
|
|
|
import com.persagy.dmp.digital.client.DigitalRelationFacade;
|
|
|
import com.persagy.dmp.digital.client.DigitalRelationProjectCalFacade;
|
|
|
import com.persagy.dmp.digital.entity.ObjectRelation;
|
|
|
+import com.persagy.dmp.simple.client.DigitalObjectSimpleFacade;
|
|
|
import com.persagy.proxy.adm.constant.AdmCommonConstant;
|
|
|
import com.persagy.proxy.adm.constant.AdmRelationTypeEnum;
|
|
|
import com.persagy.proxy.adm.constant.ObjTypeMapping;
|
|
|
-import com.persagy.proxy.adm.model.AdmRelationObject;
|
|
|
import com.persagy.proxy.adm.service.IRelationReportService;
|
|
|
-import com.persagy.proxy.adm.strategy.RelationObjectContext;
|
|
|
import com.persagy.proxy.adm.strategy.relationdata.RelationObjectStrategy;
|
|
|
|
|
|
import cn.hutool.core.collection.CollectionUtil;
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
-import lombok.extern.slf4j.Slf4j;
|
|
|
import net.minidev.json.JSONObject;
|
|
|
|
|
|
/**
|
|
@@ -45,16 +41,12 @@ import net.minidev.json.JSONObject;
|
|
|
* @author zhangqiankun
|
|
|
* @date 2021年8月31日 下午4:43:15
|
|
|
*/
|
|
|
-@Slf4j
|
|
|
@Service
|
|
|
public class RelationReportService implements IRelationReportService {
|
|
|
|
|
|
@Value("${middleware.group.code}")
|
|
|
private String defaultCode;
|
|
|
|
|
|
- @Autowired
|
|
|
- private RelationObjectContext relationObjectContext;
|
|
|
-
|
|
|
@Override
|
|
|
public List<Map<String, Object>> queryObjectCountByObjInfos(String groupCode, Set<String> classCodes, Set<String> objTypes, List<String> groups) {
|
|
|
groupCode = StrUtil.isBlank(groupCode) ? defaultCode : groupCode;
|
|
@@ -267,12 +259,4 @@ public class RelationReportService implements IRelationReportService {
|
|
|
return CollectionUtil.isEmpty(objectRelations) ? Lists.newArrayList() : objectRelations;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
- @Override
|
|
|
- public List<AdmRelationObject> reportRelationObject(String groupCode, String projectId, String relType, String code, String zoneType) {
|
|
|
- groupCode = StrUtil.isBlank(groupCode) ? defaultCode : groupCode;
|
|
|
- log.info("下载报表: groupCode[{}], projectId[{}], relType[{}], code[{}]", groupCode, projectId, relType, code);
|
|
|
- return this.relationObjectContext.findRelationObject(groupCode, projectId, relType);
|
|
|
- }
|
|
|
-
|
|
|
}
|