广州市综治平台后端
xusd
2 days ago c490640493f04e2ed0fc5c4c8fbc92ebdd4d5380
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
package cn.huge.module.client.api;
 
import cn.huge.base.common.bo.ReturnBO;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
 
/**
 * @title: 公共工具微服务调用接口
 * @description: 公共工具微服务调用接口
 * @company: hugeinfo
 * @author: liyj
 * @time: 2021-11-05 16:51:48
 * @version: 1.0.0
 */
@FeignClient(name = "dyh-utils")
public interface UtilsClient {
 
    /**
     * 公共id-获取时间Id,后四位常量
     * @url {ctx}/api/client/custUtils/getNewTimeId
     * @return Object
     */
    @GetMapping("/api/client/custUtils/getNewTimeId")
    ReturnBO getNewTimeId();
}