广州市综治平台后端
xusd
2025-06-07 36306491396230522fa20585c2621a7fc899849a
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package cn.huge.module.syncbydyh.client.api;
 
import cn.huge.base.common.bo.R;
import cn.huge.base.common.bo.ReturnBO;
import cn.huge.module.sys.dto.GridRoleMenuDTO;
import cn.huge.module.sys.dto.GridTokenBaseDTO;
import cn.huge.module.sys.dto.GridUserRoleDTO;
import cn.huge.module.sys.vo.GridRoleMenuVo;
import cn.huge.module.sys.vo.GridUserRoleVo;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
 
import java.util.List;
 
/**
 * @title: 白云区矛盾纠纷多元化解平台同步微服务调用接口
 * @description: 白云区矛盾纠纷多元化解平台同步微服务调用接口
 * @company: hugeinfo
 * @author: liyj
 * @time: 2021-11-05 16:51:48
 * @version: 1.0.0
 */
@FeignClient(name = "dyh-sync-bydyh")
public interface SyncBydyhClient {
 
    /**
     * 数据割接-组织信息
     * @url {ctx}/api/client/syncCust/byToGzCtUnit
     * @return Object
     */
    @GetMapping("/api/client/syncCust/byToGzCtUnit")
    ReturnBO byToGzCtUnit();
 
    /**
     * 数据割接-部门信息
     * @url {ctx}/api/client/syncCust/byToGzCtDept
     * @return Object
     */
    @GetMapping("/api/client/syncCust/byToGzCtDept")
    ReturnBO byToGzCtDept();
 
    /**
     * 数据割接-用户信息
     * @url {ctx}/api/client/syncCust/byToGzCtUser
     * @return Object
     */
    @GetMapping("/api/client/syncCust/byToGzCtUser")
    ReturnBO byToGzCtUser();
 
    /**
     * 数据割接-账号信息
     * @url {ctx}/api/client/syncCust/byToGzCtAccount
     * @return Object
     */
    @GetMapping("/api/client/syncCust/byToGzCtAccount")
    ReturnBO byToGzCtAccount();
 
    /**
     * 数据割接-用户角色关系信息
     * @url {ctx}/api/client/syncCust/byToGzCtUserole
     * @return Object
     */
    @GetMapping("/api/client/syncCust/byToGzCtUserole")
    ReturnBO byToGzCtUserole();
 
}