RelatedRelationShipService.java 644 Bytes
package com.lhcredit.project.business.relatedRelation.service;


import com.alibaba.fastjson2.JSONObject;
import com.lhcredit.project.business.TianYC.entity.param.RequestParams;

public interface RelatedRelationShipService {


    /**
     * 根据 企业名称 查询两个企业之间关联关系
     * @param requestParams
     * @return
     */
    JSONObject getEnterpriseRelationShipsByName(RequestParams requestParams);

    /**
     *
     * 根据企业名称,查询 企业关联关系的链路列表
     * @param requestParams
     * @return
     */
    JSONObject getRelationShipLinkListByName(RequestParams requestParams);



}