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/dispUtils/getNewTimeId * @return Object */ @GetMapping("/api/client/dispUtils/getNewTimeId") ReturnBO getNewTimeId(); }