AffiliatesService.java
1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package com.lhcredit.project.business.Affiliates;
import com.alibaba.fastjson.JSONObject;
import com.lhcredit.project.business.TianYC.entity.param.RequestParams;
/**
* 关联方信息
*/
public interface AffiliatesService {
/**
* 对外投资
*
* @param requestParams 查询实体信息
* @return 第三方信息
*/
JSONObject inverst(RequestParams requestParams);
/**
* 分支机构
*
* @param requestParams 查询实体信息
* @return 第三方信息
*/
JSONObject branch(RequestParams requestParams);
/**
* 法定代表人对外投资
*
* @param requestParams 查询实体信息
* @return 第三方信息
*/
JSONObject allCompanys(RequestParams requestParams);
/**
* 法定代表人在外任职
*
* @param requestParams 查询实体信息
* @return 第三方信息
*/
JSONObject allCompanysRoles(RequestParams requestParams);
JSONObject inverstIsHistory(RequestParams requestParams);
}