refactor: other 服务 feign client 支持服务发现双模式
@FeignClient 改为 contextId 保留原 bean 名,name=rc-service-other,
url 使用 ${feign.other.url:}(带空默认值),API 前缀挪到 path。
行为:feign.other.url 配置存在(当前各服务启动参数注入 CLB VIP)时与原来
完全一致;置空/移除该参数后自动切换为 Nacos 服务发现负载均衡(lb)。
背景:内网 CLB 对"客户端本身是后端"的流量只调度到对面后端,对面实例被摘
除时连接被黑洞,导致部署 other 时调用方(live)线程池被拖死。切服务发现后
配合平台的 Nacos 摘流 + framework-nacos 的 LB 缓存驱逐实现无损发布。
先灰度 live→other(移除 live 启动参数中的 --feign.other.url),验证后全量。
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
parent
431f73469e
commit
146db166fc
@ -6,8 +6,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
/**
|
/**
|
||||||
* @author longli on @date 2024/3/14
|
* @author longli on @date 2024/3/14
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "activityAgentAnchorCountClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "activityAgentAnchorCountClient", name = "rc-service-other", url = "${feign.other.url:}", path = ActivityAgentAnchorCountClientApi.API_PREFIX)
|
||||||
ActivityAgentAnchorCountClientApi.API_PREFIX)
|
|
||||||
public interface ActivityAgentAnchorCountClient extends ActivityAgentAnchorCountClientApi {
|
public interface ActivityAgentAnchorCountClient extends ActivityAgentAnchorCountClientApi {
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/10/8
|
* @author pengliang on 2023/10/8
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "activityGlobalizationDescriptionClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "activityGlobalizationDescriptionClient", name = "rc-service-other", url = "${feign.other.url:}", path = ActivityGlobalizationDescriptionClientApi.API_PREFIX)
|
||||||
ActivityGlobalizationDescriptionClientApi.API_PREFIX)
|
|
||||||
public interface ActivityGlobalizationDescriptionClient extends
|
public interface ActivityGlobalizationDescriptionClient extends
|
||||||
ActivityGlobalizationDescriptionClientApi {
|
ActivityGlobalizationDescriptionClientApi {
|
||||||
|
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/10/9
|
* @author pengliang on 2023/10/9
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "activityHallFameClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "activityHallFameClient", name = "rc-service-other", url = "${feign.other.url:}", path = ActivityHallFameClientApi.API_PREFIX)
|
||||||
ActivityHallFameClientApi.API_PREFIX)
|
|
||||||
public interface ActivityHallFameClient extends ActivityHallFameClientApi {
|
public interface ActivityHallFameClient extends ActivityHallFameClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -7,8 +7,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
* 活动图片配置
|
* 活动图片配置
|
||||||
* @author zongpubin on 2024/1/29
|
* @author zongpubin on 2024/1/29
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "activityPictureConfigClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "activityPictureConfigClient", name = "rc-service-other", url = "${feign.other.url:}", path = ActivityPictureConfigClientApi.API_PREFIX)
|
||||||
ActivityPictureConfigClientApi.API_PREFIX)
|
|
||||||
public interface ActivityPictureConfigClient extends ActivityPictureConfigClientApi {
|
public interface ActivityPictureConfigClient extends ActivityPictureConfigClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -6,8 +6,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
/**
|
/**
|
||||||
* @author zongpubin on 2023/8/15
|
* @author zongpubin on 2023/8/15
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "agentActivityCountClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "agentActivityCountClient", name = "rc-service-other", url = "${feign.other.url:}", path = AgentActivityCountClientApi.API_PREFIX)
|
||||||
AgentActivityCountClientApi.API_PREFIX)
|
|
||||||
public interface AgentActivityCountClient extends AgentActivityCountClientApi {
|
public interface AgentActivityCountClient extends AgentActivityCountClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/8/16
|
* @author pengliang on 2023/8/16
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "appRankCountClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "appRankCountClient", name = "rc-service-other", url = "${feign.other.url:}", path = AppRankCountClientApi.API_PREFIX)
|
||||||
AppRankCountClientApi.API_PREFIX)
|
|
||||||
public interface AppRankCountClient extends AppRankCountClientApi {
|
public interface AppRankCountClient extends AppRankCountClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/8/18
|
* @author pengliang on 2023/8/18
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "cumulativeRechargeClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "cumulativeRechargeClient", name = "rc-service-other", url = "${feign.other.url:}", path = CumulativeRechargeClientApi.API_PREFIX)
|
||||||
CumulativeRechargeClientApi.API_PREFIX)
|
|
||||||
public interface CumulativeRechargeClient extends CumulativeRechargeClientApi {
|
public interface CumulativeRechargeClient extends CumulativeRechargeClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -6,8 +6,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
/**
|
/**
|
||||||
* @author pengliang on 2023/5/26
|
* @author pengliang on 2023/5/26
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "inviteActivityCountClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "inviteActivityCountClient", name = "rc-service-other", url = "${feign.other.url:}", path = InviteActivityCountClientApi.API_PREFIX)
|
||||||
InviteActivityCountClientApi.API_PREFIX)
|
|
||||||
public interface InviteActivityCountClient extends InviteActivityCountClientApi {
|
public interface InviteActivityCountClient extends InviteActivityCountClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -9,8 +9,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
* @author system
|
* @author system
|
||||||
* @since 2025-10-18
|
* @since 2025-10-18
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "lotteryActivityClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "lotteryActivityClient", name = "rc-service-other", url = "${feign.other.url:}", path = LotteryActivityClientApi.API_PREFIX)
|
||||||
LotteryActivityClientApi.API_PREFIX)
|
|
||||||
public interface LotteryActivityClient extends LotteryActivityClientApi {
|
public interface LotteryActivityClient extends LotteryActivityClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -9,8 +9,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
* @author system
|
* @author system
|
||||||
* @since 2025-10-18
|
* @since 2025-10-18
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "lotteryActivityManageClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "lotteryActivityManageClient", name = "rc-service-other", url = "${feign.other.url:}", path = LotteryActivityManageClientApi.API_PREFIX)
|
||||||
LotteryActivityManageClientApi.API_PREFIX)
|
|
||||||
public interface LotteryActivityManageClient extends LotteryActivityManageClientApi {
|
public interface LotteryActivityManageClient extends LotteryActivityManageClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -9,8 +9,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
* @author system
|
* @author system
|
||||||
* @since 2025-10-18
|
* @since 2025-10-18
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "lotteryActivityQueryClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "lotteryActivityQueryClient", name = "rc-service-other", url = "${feign.other.url:}", path = LotteryActivityQueryClientApi.API_PREFIX)
|
||||||
LotteryActivityQueryClientApi.API_PREFIX)
|
|
||||||
public interface LotteryActivityQueryClient extends LotteryActivityQueryClientApi {
|
public interface LotteryActivityQueryClient extends LotteryActivityQueryClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -9,8 +9,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
* @author system
|
* @author system
|
||||||
* @since 2025-10-18
|
* @since 2025-10-18
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "lotteryPrizeClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "lotteryPrizeClient", name = "rc-service-other", url = "${feign.other.url:}", path = LotteryPrizeClientApi.API_PREFIX)
|
||||||
LotteryPrizeClientApi.API_PREFIX)
|
|
||||||
public interface LotteryPrizeClient extends LotteryPrizeClientApi {
|
public interface LotteryPrizeClient extends LotteryPrizeClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -9,8 +9,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
* @author system
|
* @author system
|
||||||
* @since 2025-10-18
|
* @since 2025-10-18
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "lotteryPrizeManageClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "lotteryPrizeManageClient", name = "rc-service-other", url = "${feign.other.url:}", path = LotteryPrizeManageClientApi.API_PREFIX)
|
||||||
LotteryPrizeManageClientApi.API_PREFIX)
|
|
||||||
public interface LotteryPrizeManageClient extends LotteryPrizeManageClientApi {
|
public interface LotteryPrizeManageClient extends LotteryPrizeManageClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -9,8 +9,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
* @author system
|
* @author system
|
||||||
* @since 2025-10-18
|
* @since 2025-10-18
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "lotteryRecordClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "lotteryRecordClient", name = "rc-service-other", url = "${feign.other.url:}", path = LotteryRecordClientApi.API_PREFIX)
|
||||||
LotteryRecordClientApi.API_PREFIX)
|
|
||||||
public interface LotteryRecordClient extends LotteryRecordClientApi {
|
public interface LotteryRecordClient extends LotteryRecordClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -9,8 +9,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
* @author system
|
* @author system
|
||||||
* @since 2025-10-18
|
* @since 2025-10-18
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "lotteryRecordManageClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "lotteryRecordManageClient", name = "rc-service-other", url = "${feign.other.url:}", path = LotteryRecordManageClientApi.API_PREFIX)
|
||||||
LotteryRecordManageClientApi.API_PREFIX)
|
|
||||||
public interface LotteryRecordManageClient extends LotteryRecordManageClientApi {
|
public interface LotteryRecordManageClient extends LotteryRecordManageClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -9,8 +9,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
* @author system
|
* @author system
|
||||||
* @since 2025-10-18
|
* @since 2025-10-18
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "lotteryTicketClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "lotteryTicketClient", name = "rc-service-other", url = "${feign.other.url:}", path = LotteryTicketClientApi.API_PREFIX)
|
||||||
LotteryTicketClientApi.API_PREFIX)
|
|
||||||
public interface LotteryTicketClient extends LotteryTicketClientApi {
|
public interface LotteryTicketClient extends LotteryTicketClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -9,8 +9,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
* @author system
|
* @author system
|
||||||
* @since 2025-10-18
|
* @since 2025-10-18
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "lotteryTicketManageClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "lotteryTicketManageClient", name = "rc-service-other", url = "${feign.other.url:}", path = LotteryTicketManageClientApi.API_PREFIX)
|
||||||
LotteryTicketManageClientApi.API_PREFIX)
|
|
||||||
public interface LotteryTicketManageClient extends LotteryTicketManageClientApi {
|
public interface LotteryTicketManageClient extends LotteryTicketManageClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -9,8 +9,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
* @author system
|
* @author system
|
||||||
* @since 2025-10-18
|
* @since 2025-10-18
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "lotteryUserCountClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "lotteryUserCountClient", name = "rc-service-other", url = "${feign.other.url:}", path = LotteryUserCountClientApi.API_PREFIX)
|
||||||
LotteryUserCountClientApi.API_PREFIX)
|
|
||||||
public interface LotteryUserCountClient extends LotteryUserCountClientApi {
|
public interface LotteryUserCountClient extends LotteryUserCountClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/6/5
|
* @author pengliang on 2023/6/5
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "propsActivityCnfClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "propsActivityCnfClient", name = "rc-service-other", url = "${feign.other.url:}", path = PropsActivityClientApi.API_PREFIX)
|
||||||
PropsActivityClientApi.API_PREFIX)
|
|
||||||
public interface PropsActivityClient extends PropsActivityClientApi {
|
public interface PropsActivityClient extends PropsActivityClientApi {
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/11/2
|
* @author pengliang on 2023/11/2
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "roomContributionActivityCountClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "roomContributionActivityCountClient", name = "rc-service-other", url = "${feign.other.url:}", path = RoomContributionActivityCountClientApi.API_PREFIX)
|
||||||
RoomContributionActivityCountClientApi.API_PREFIX)
|
|
||||||
public interface RoomContributionActivityCountClient extends
|
public interface RoomContributionActivityCountClient extends
|
||||||
RoomContributionActivityCountClientApi {
|
RoomContributionActivityCountClientApi {
|
||||||
|
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/11/23
|
* @author pengliang on 2023/11/23
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "roomContributionCountClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "roomContributionCountClient", name = "rc-service-other", url = "${feign.other.url:}", path = RoomContributionCountClientApi.API_PREFIX)
|
||||||
RoomContributionCountClientApi.API_PREFIX)
|
|
||||||
public interface RoomContributionCountClient extends RoomContributionCountClientApi {
|
public interface RoomContributionCountClient extends RoomContributionCountClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author lixiaofei on 2024/7/8
|
* @author lixiaofei on 2024/7/8
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "temporaryActivityCountClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "temporaryActivityCountClient", name = "rc-service-other", url = "${feign.other.url:}", path = TemporaryActivityCountClientApi.API_PREFIX)
|
||||||
TemporaryActivityCountClientApi.API_PREFIX)
|
|
||||||
public interface TemporaryActivityCountClient extends TemporaryActivityCountClientApi {
|
public interface TemporaryActivityCountClient extends TemporaryActivityCountClientApi {
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -6,8 +6,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
/**
|
/**
|
||||||
* 用户活动充值服务
|
* 用户活动充值服务
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "userActivityRechargeClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "userActivityRechargeClient", name = "rc-service-other", url = "${feign.other.url:}", path = UserActivityRechargeClientApi.API_PREFIX)
|
||||||
UserActivityRechargeClientApi.API_PREFIX)
|
|
||||||
public interface UserActivityRechargeClient extends UserActivityRechargeClientApi {
|
public interface UserActivityRechargeClient extends UserActivityRechargeClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,7 +8,6 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/11/16
|
* @author pengliang on 2023/11/16
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "aiQianFanChatClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "aiQianFanChatClient", name = "rc-service-other", url = "${feign.other.url:}", path = AiQianFanChatClientApi.API_PREFIX)
|
||||||
AiQianFanChatClientApi.API_PREFIX)
|
|
||||||
public interface AiQianFanChatClient extends AiQianFanChatClientApi {
|
public interface AiQianFanChatClient extends AiQianFanChatClientApi {
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/5/25
|
* @author pengliang on 2023/5/25
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "approvalUserSettingDataClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "approvalUserSettingDataClient", name = "rc-service-other", url = "${feign.other.url:}", path = ApprovalUserSettingDataClientApi.API_PREFIX)
|
||||||
ApprovalUserSettingDataClientApi.API_PREFIX)
|
|
||||||
public interface ApprovalUserSettingDataClient extends ApprovalUserSettingDataClientApi {
|
public interface ApprovalUserSettingDataClient extends ApprovalUserSettingDataClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author zongpubin on 2024/1/22
|
* @author zongpubin on 2024/1/22
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "approvalUserViolationHistoryClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "approvalUserViolationHistoryClient", name = "rc-service-other", url = "${feign.other.url:}", path = ApprovalUserViolationHistoryClientApi.API_PREFIX)
|
||||||
ApprovalUserViolationHistoryClientApi.API_PREFIX)
|
|
||||||
public interface ApprovalUserViolationHistoryClient extends ApprovalUserViolationHistoryClientApi {
|
public interface ApprovalUserViolationHistoryClient extends ApprovalUserViolationHistoryClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/12/27
|
* @author pengliang on 2023/12/27
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "managerApprovalNotPassClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "managerApprovalNotPassClient", name = "rc-service-other", url = "${feign.other.url:}", path = ManagerApprovalNotPassClientApi.API_PREFIX)
|
||||||
ManagerApprovalNotPassClientApi.API_PREFIX)
|
|
||||||
public interface ManagerApprovalNotPassClient extends ManagerApprovalNotPassClientApi {
|
public interface ManagerApprovalNotPassClient extends ManagerApprovalNotPassClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -3,8 +3,7 @@ package com.red.circle.other.inner.endpoint.approval;
|
|||||||
import com.red.circle.other.inner.endpoint.approval.api.TeamApplicationProcessApprovalClientApi;
|
import com.red.circle.other.inner.endpoint.approval.api.TeamApplicationProcessApprovalClientApi;
|
||||||
import org.springframework.cloud.openfeign.FeignClient;
|
import org.springframework.cloud.openfeign.FeignClient;
|
||||||
|
|
||||||
@FeignClient(name = "teamApplicationProcessApprovalClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "teamApplicationProcessApprovalClient", name = "rc-service-other", url = "${feign.other.url:}", path = TeamApplicationProcessApprovalClientApi.API_PREFIX)
|
||||||
TeamApplicationProcessApprovalClientApi.API_PREFIX)
|
|
||||||
public interface TeamApplicationProcessApprovalClient extends
|
public interface TeamApplicationProcessApprovalClient extends
|
||||||
TeamApplicationProcessApprovalClientApi {
|
TeamApplicationProcessApprovalClientApi {
|
||||||
|
|
||||||
|
|||||||
@ -4,8 +4,7 @@ package com.red.circle.other.inner.endpoint.approval;
|
|||||||
import com.red.circle.other.inner.endpoint.approval.api.TeamApplicationProcessClientApi;
|
import com.red.circle.other.inner.endpoint.approval.api.TeamApplicationProcessClientApi;
|
||||||
import org.springframework.cloud.openfeign.FeignClient;
|
import org.springframework.cloud.openfeign.FeignClient;
|
||||||
|
|
||||||
@FeignClient(name = "teamApplicationProcessClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "teamApplicationProcessClient", name = "rc-service-other", url = "${feign.other.url:}", path = TeamApplicationProcessClientApi.API_PREFIX)
|
||||||
TeamApplicationProcessClientApi.API_PREFIX)
|
|
||||||
public interface TeamApplicationProcessClient extends TeamApplicationProcessClientApi {
|
public interface TeamApplicationProcessClient extends TeamApplicationProcessClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -3,8 +3,7 @@ package com.red.circle.other.inner.endpoint.approval;
|
|||||||
import com.red.circle.other.inner.endpoint.approval.api.TeamTerminationFeeRecordClientApi;
|
import com.red.circle.other.inner.endpoint.approval.api.TeamTerminationFeeRecordClientApi;
|
||||||
import org.springframework.cloud.openfeign.FeignClient;
|
import org.springframework.cloud.openfeign.FeignClient;
|
||||||
|
|
||||||
@FeignClient(name = "teamTerminationFeeRecordClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "teamTerminationFeeRecordClient", name = "rc-service-other", url = "${feign.other.url:}", path = TeamTerminationFeeRecordClientApi.API_PREFIX)
|
||||||
TeamTerminationFeeRecordClientApi.API_PREFIX)
|
|
||||||
public interface TeamTerminationFeeRecordClient extends TeamTerminationFeeRecordClientApi {
|
public interface TeamTerminationFeeRecordClient extends TeamTerminationFeeRecordClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/11/17
|
* @author pengliang on 2023/11/17
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "statisticsPropsSaleQuotaClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "statisticsPropsSaleQuotaClient", name = "rc-service-other", url = "${feign.other.url:}", path = StatisticsPropsSaleQuotaClientApi.API_PREFIX)
|
||||||
StatisticsPropsSaleQuotaClientApi.API_PREFIX)
|
|
||||||
public interface StatisticsPropsSaleQuotaClient extends StatisticsPropsSaleQuotaClientApi {
|
public interface StatisticsPropsSaleQuotaClient extends StatisticsPropsSaleQuotaClientApi {
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/11/16
|
* @author pengliang on 2023/11/16
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "statisticsRoomActiveClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "statisticsRoomActiveClient", name = "rc-service-other", url = "${feign.other.url:}", path = StatisticsRoomActiveClientApi.API_PREFIX)
|
||||||
StatisticsRoomActiveClientApi.API_PREFIX)
|
|
||||||
public interface StatisticsRoomActiveClient extends StatisticsRoomActiveClientApi {
|
public interface StatisticsRoomActiveClient extends StatisticsRoomActiveClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author zongpubin on 2024/1/22
|
* @author zongpubin on 2024/1/22
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "approvalDateInfoClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "approvalDateInfoClient", name = "rc-service-other", url = "${feign.other.url:}", path = ApprovalDataInfoClientApi.API_PREFIX)
|
||||||
ApprovalDataInfoClientApi.API_PREFIX)
|
|
||||||
public interface ApprovalDataInfoClient extends ApprovalDataInfoClientApi {
|
public interface ApprovalDataInfoClient extends ApprovalDataInfoClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author zongpubin on 2024/1/19
|
* @author zongpubin on 2024/1/19
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "ApprovalDynamicClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "ApprovalDynamicClient", name = "rc-service-other", url = "${feign.other.url:}", path = ApprovalDynamicClientApi.API_PREFIX)
|
||||||
ApprovalDynamicClientApi.API_PREFIX)
|
|
||||||
public interface ApprovalDynamicClient extends ApprovalDynamicClientApi {
|
public interface ApprovalDynamicClient extends ApprovalDynamicClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author zongpubin on 2024/1/20
|
* @author zongpubin on 2024/1/20
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "approvalDynamicReportClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "approvalDynamicReportClient", name = "rc-service-other", url = "${feign.other.url:}", path = ApprovalDynamicReportClientApi.API_PREFIX)
|
||||||
ApprovalDynamicReportClientApi.API_PREFIX)
|
|
||||||
public interface ApprovalDynamicReportClient extends ApprovalDynamicReportClientApi {
|
public interface ApprovalDynamicReportClient extends ApprovalDynamicReportClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author zongpubin on 2024/1/20
|
* @author zongpubin on 2024/1/20
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "approvalFamilySettingDataClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "approvalFamilySettingDataClient", name = "rc-service-other", url = "${feign.other.url:}", path = ApprovalFamilySettingDataClientApi.API_PREFIX)
|
||||||
ApprovalFamilySettingDataClientApi.API_PREFIX)
|
|
||||||
public interface ApprovalFamilySettingDataClient extends ApprovalFamilySettingDataClientApi {
|
public interface ApprovalFamilySettingDataClient extends ApprovalFamilySettingDataClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author zongpubin on 2024/1/22
|
* @author zongpubin on 2024/1/22
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "approvalUserSettingInfoClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "approvalUserSettingInfoClient", name = "rc-service-other", url = "${feign.other.url:}", path = ApprovalUserSettingInfoClientApi.API_PREFIX)
|
||||||
ApprovalUserSettingInfoClientApi.API_PREFIX)
|
|
||||||
public interface ApprovalUserSettingInfoClient extends ApprovalUserSettingInfoClientApi {
|
public interface ApprovalUserSettingInfoClient extends ApprovalUserSettingInfoClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author lisizhe on 2023/10/5
|
* @author lisizhe on 2023/10/5
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "dynamicBlacklistClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "dynamicBlacklistClient", name = "rc-service-other", url = "${feign.other.url:}", path = DynamicBlacklistClientApi.API_PREFIX)
|
||||||
DynamicBlacklistClientApi.API_PREFIX)
|
|
||||||
public interface DynamicBlacklistClient extends DynamicBlacklistClientApi {
|
public interface DynamicBlacklistClient extends DynamicBlacklistClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author lisizhe on 2023/10/5
|
* @author lisizhe on 2023/10/5
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "dynamicCacheClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "dynamicCacheClient", name = "rc-service-other", url = "${feign.other.url:}", path = DynamicCacheClientApi.API_PREFIX)
|
||||||
DynamicCacheClientApi.API_PREFIX)
|
|
||||||
public interface DynamicCacheClient extends DynamicCacheClientApi {
|
public interface DynamicCacheClient extends DynamicCacheClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author lisizhe on 2023/10/5
|
* @author lisizhe on 2023/10/5
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "dynamicContentClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "dynamicContentClient", name = "rc-service-other", url = "${feign.other.url:}", path = DynamicContentClientApi.API_PREFIX)
|
||||||
DynamicContentClientApi.API_PREFIX)
|
|
||||||
public interface DynamicContentClient extends DynamicContentClientApi {
|
public interface DynamicContentClient extends DynamicContentClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author lisizhe on 2023/10/5
|
* @author lisizhe on 2023/10/5
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "dynamicPictureClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "dynamicPictureClient", name = "rc-service-other", url = "${feign.other.url:}", path = DynamicPictureClientApi.API_PREFIX)
|
||||||
DynamicPictureClientApi.API_PREFIX)
|
|
||||||
public interface DynamicPictureClient extends DynamicPictureClientApi {
|
public interface DynamicPictureClient extends DynamicPictureClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author lisizhe on 2023/10/5
|
* @author lisizhe on 2023/10/5
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "dynamicTagClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "dynamicTagClient", name = "rc-service-other", url = "${feign.other.url:}", path = DynamicTagClientApi.API_PREFIX)
|
||||||
DynamicTagClientApi.API_PREFIX)
|
|
||||||
public interface DynamicTagClient extends DynamicTagClientApi {
|
public interface DynamicTagClient extends DynamicTagClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author zongpubin on 2024/1/22
|
* @author zongpubin on 2024/1/22
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "dynamicTimelineClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "dynamicTimelineClient", name = "rc-service-other", url = "${feign.other.url:}", path = DynamicTimelineClientApi.API_PREFIX)
|
||||||
DynamicTimelineClientApi.API_PREFIX)
|
|
||||||
public interface DynamicTimelineClient extends DynamicTimelineClientApi {
|
public interface DynamicTimelineClient extends DynamicTimelineClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author lisizhe on 2023/10/5
|
* @author lisizhe on 2023/10/5
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "topDynamicClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "topDynamicClient", name = "rc-service-other", url = "${feign.other.url:}", path = TopDynamicClientApi.API_PREFIX)
|
||||||
TopDynamicClientApi.API_PREFIX)
|
|
||||||
public interface TopDynamicClient extends TopDynamicClientApi {
|
public interface TopDynamicClient extends TopDynamicClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/6/5
|
* @author pengliang on 2023/6/5
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "familyBaseInfoClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "familyBaseInfoClient", name = "rc-service-other", url = "${feign.other.url:}", path = FamilyBaseInfoClientApi.API_PREFIX)
|
||||||
FamilyBaseInfoClientApi.API_PREFIX)
|
|
||||||
public interface FamilyBaseInfoClient extends FamilyBaseInfoClientApi {
|
public interface FamilyBaseInfoClient extends FamilyBaseInfoClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,7 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/6/5
|
* @author pengliang on 2023/6/5
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "familyClient", url = "${feign.other.url}" + FamilyClientApi.API_PREFIX)
|
@FeignClient(contextId = "familyClient", name = "rc-service-other", url = "${feign.other.url:}", path = FamilyClientApi.API_PREFIX)
|
||||||
public interface FamilyClient extends FamilyClientApi {
|
public interface FamilyClient extends FamilyClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/6/5
|
* @author pengliang on 2023/6/5
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "familyCreateRulesClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "familyCreateRulesClient", name = "rc-service-other", url = "${feign.other.url:}", path = FamilyCreateRulesClientApi.API_PREFIX)
|
||||||
FamilyCreateRulesClientApi.API_PREFIX)
|
|
||||||
public interface FamilyCreateRulesClient extends FamilyCreateRulesClientApi {
|
public interface FamilyCreateRulesClient extends FamilyCreateRulesClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/10/22
|
* @author pengliang on 2023/10/22
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "familyDailyTaskTriggerRecordClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "familyDailyTaskTriggerRecordClient", name = "rc-service-other", url = "${feign.other.url:}", path = FamilyDailyTaskTriggerRecordClientApi.API_PREFIX)
|
||||||
FamilyDailyTaskTriggerRecordClientApi.API_PREFIX)
|
|
||||||
public interface FamilyDailyTaskTriggerRecordClient extends FamilyDailyTaskTriggerRecordClientApi {
|
public interface FamilyDailyTaskTriggerRecordClient extends FamilyDailyTaskTriggerRecordClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/6/5
|
* @author pengliang on 2023/6/5
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "familyLevelConfigClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "familyLevelConfigClient", name = "rc-service-other", url = "${feign.other.url:}", path = FamilyLevelConfigClientApi.API_PREFIX)
|
||||||
FamilyLevelConfigClientApi.API_PREFIX)
|
|
||||||
public interface FamilyLevelConfigClient extends FamilyLevelConfigClientApi {
|
public interface FamilyLevelConfigClient extends FamilyLevelConfigClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/6/5
|
* @author pengliang on 2023/6/5
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "familyMemberClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "familyMemberClient", name = "rc-service-other", url = "${feign.other.url:}", path = FamilyMemberClientApi.API_PREFIX)
|
||||||
FamilyMemberClientApi.API_PREFIX)
|
|
||||||
public interface FamilyMemberClient extends FamilyMemberClientApi {
|
public interface FamilyMemberClient extends FamilyMemberClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/11/16
|
* @author pengliang on 2023/11/16
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "familyMemberWeekAwardClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "familyMemberWeekAwardClient", name = "rc-service-other", url = "${feign.other.url:}", path = FamilyMemberWeekAwardClientApi.API_PREFIX)
|
||||||
FamilyMemberWeekAwardClientApi.API_PREFIX)
|
|
||||||
public interface FamilyMemberWeekAwardClient extends FamilyMemberWeekAwardClientApi {
|
public interface FamilyMemberWeekAwardClient extends FamilyMemberWeekAwardClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/6/5
|
* @author pengliang on 2023/6/5
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "familyRewardRuleClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "familyRewardRuleClient", name = "rc-service-other", url = "${feign.other.url:}", path = FamilyRewardRuleClientApi.API_PREFIX)
|
||||||
FamilyRewardRuleClientApi.API_PREFIX)
|
|
||||||
public interface FamilyRewardRuleClient extends FamilyRewardRuleClientApi {
|
public interface FamilyRewardRuleClient extends FamilyRewardRuleClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,7 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/6/10
|
* @author pengliang on 2023/6/10
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "gameEggClient", url = "${feign.other.url}" + GameEggClientApi.API_PREFIX)
|
@FeignClient(contextId = "gameEggClient", name = "rc-service-other", url = "${feign.other.url:}", path = GameEggClientApi.API_PREFIX)
|
||||||
public interface GameEggClient extends GameEggClientApi {
|
public interface GameEggClient extends GameEggClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,7 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/6/10
|
* @author pengliang on 2023/6/10
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "gameKtvClient", url = "${feign.other.url}" + GameKtvClientApi.API_PREFIX)
|
@FeignClient(contextId = "gameKtvClient", name = "rc-service-other", url = "${feign.other.url:}", path = GameKtvClientApi.API_PREFIX)
|
||||||
public interface GameKtvClient extends GameKtvClientApi {
|
public interface GameKtvClient extends GameKtvClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/6/10
|
* @author pengliang on 2023/6/10
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "gameLuckyClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "gameLuckyClient", name = "rc-service-other", url = "${feign.other.url:}", path = GameLuckyClientApi.API_PREFIX)
|
||||||
GameLuckyClientApi.API_PREFIX)
|
|
||||||
public interface GameLuckyClient extends GameLuckyClientApi {
|
public interface GameLuckyClient extends GameLuckyClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author zongpubin on 2024/1/24
|
* @author zongpubin on 2024/1/24
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "gameLuckyGiftConfigClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "gameLuckyGiftConfigClient", name = "rc-service-other", url = "${feign.other.url:}", path = GameLuckyGiftConfigClientApi.API_PREFIX)
|
||||||
GameLuckyGiftConfigClientApi.API_PREFIX)
|
|
||||||
public interface GameLuckyGiftConfigClient extends GameLuckyGiftConfigClientApi {
|
public interface GameLuckyGiftConfigClient extends GameLuckyGiftConfigClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author zongpubin on 2024/1/26
|
* @author zongpubin on 2024/1/26
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "gameLudoClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "gameLudoClient", name = "rc-service-other", url = "${feign.other.url:}", path = GameLudoClientApi.API_PREFIX)
|
||||||
GameLudoClientApi.API_PREFIX)
|
|
||||||
public interface GameLudoClient extends GameLudoClientApi {
|
public interface GameLudoClient extends GameLudoClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,7 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author zongpubin on 2024/1/27
|
* @author zongpubin on 2024/1/27
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "gamePkClient", url = "${feign.other.url}" + GamePkClientApi.API_PREFIX)
|
@FeignClient(contextId = "gamePkClient", name = "rc-service-other", url = "${feign.other.url:}", path = GamePkClientApi.API_PREFIX)
|
||||||
public interface GamePkClient extends GamePkClientApi {
|
public interface GamePkClient extends GamePkClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author zongpubin on 2024/1/27
|
* @author zongpubin on 2024/1/27
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "gameRedPacketBackClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "gameRedPacketBackClient", name = "rc-service-other", url = "${feign.other.url:}", path = GameRedPacketBackClientApi.API_PREFIX)
|
||||||
GameRedPacketBackClientApi.API_PREFIX)
|
|
||||||
public interface GameRedPacketBackClient extends GameRedPacketBackClientApi {
|
public interface GameRedPacketBackClient extends GameRedPacketBackClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author zongpubin on 2024/1/25
|
* @author zongpubin on 2024/1/25
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "gameTrumpetBlacklistClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "gameTrumpetBlacklistClient", name = "rc-service-other", url = "${feign.other.url:}", path = GameTrumpetBlacklistClientApi.API_PREFIX)
|
||||||
GameTrumpetBlacklistClientApi.API_PREFIX)
|
|
||||||
public interface GameTrumpetBlacklistClient extends GameTrumpetBlacklistClientApi {
|
public interface GameTrumpetBlacklistClient extends GameTrumpetBlacklistClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/12/23
|
* @author pengliang on 2023/12/23
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "gameTrumpetCountClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "gameTrumpetCountClient", name = "rc-service-other", url = "${feign.other.url:}", path = GameTrumpetCountClientApi.API_PREFIX)
|
||||||
GameTrumpetCountClientApi.API_PREFIX)
|
|
||||||
public interface GameTrumpetCountClient extends GameTrumpetCountClientApi {
|
public interface GameTrumpetCountClient extends GameTrumpetCountClientApi {
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -6,8 +6,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
/**
|
/**
|
||||||
* @author pengliang on 2023/5/31
|
* @author pengliang on 2023/5/31
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "activeVoiceRoomClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "activeVoiceRoomClient", name = "rc-service-other", url = "${feign.other.url:}", path = ActiveVoiceRoomClientApi.API_PREFIX)
|
||||||
ActiveVoiceRoomClientApi.API_PREFIX)
|
|
||||||
public interface ActiveVoiceRoomClient extends ActiveVoiceRoomClientApi {
|
public interface ActiveVoiceRoomClient extends ActiveVoiceRoomClientApi {
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -6,7 +6,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
/**
|
/**
|
||||||
* @author lisizhe on 2023/5/31
|
* @author lisizhe on 2023/5/31
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "hotRoomClient", url = "${feign.other.url}" + HotRoomClientApi.API_PREFIX)
|
@FeignClient(contextId = "hotRoomClient", name = "rc-service-other", url = "${feign.other.url:}", path = HotRoomClientApi.API_PREFIX)
|
||||||
public interface HotRoomClient extends HotRoomClientApi {
|
public interface HotRoomClient extends HotRoomClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -6,8 +6,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
/**
|
/**
|
||||||
* 房间用户心动值
|
* 房间用户心动值
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "liveHeartbeatClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "liveHeartbeatClient", name = "rc-service-other", url = "${feign.other.url:}", path = LiveHeartbeatApi.API_PREFIX)
|
||||||
LiveHeartbeatApi.API_PREFIX)
|
|
||||||
public interface LiveHeartbeatClient extends LiveHeartbeatApi {
|
public interface LiveHeartbeatClient extends LiveHeartbeatApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -6,8 +6,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
/**
|
/**
|
||||||
* @author pengliang on 2023/5/31
|
* @author pengliang on 2023/5/31
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "roomContributionBalanceClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "roomContributionBalanceClient", name = "rc-service-other", url = "${feign.other.url:}", path = RoomContributionBalanceClientApi.API_PREFIX)
|
||||||
RoomContributionBalanceClientApi.API_PREFIX)
|
|
||||||
public interface RoomContributionBalanceClient extends RoomContributionBalanceClientApi {
|
public interface RoomContributionBalanceClient extends RoomContributionBalanceClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -6,8 +6,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
/**
|
/**
|
||||||
* @author pengliang on 2023/5/31
|
* @author pengliang on 2023/5/31
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "roomProfileClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "roomProfileClient", name = "rc-service-other", url = "${feign.other.url:}", path = RoomManagerClientApi.API_PREFIX)
|
||||||
RoomManagerClientApi.API_PREFIX)
|
|
||||||
public interface RoomManagerClient extends RoomManagerClientApi {
|
public interface RoomManagerClient extends RoomManagerClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/11/22
|
* @author pengliang on 2023/11/22
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "roomMemberClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "roomMemberClient", name = "rc-service-other", url = "${feign.other.url:}", path = RoomMemberClientApi.API_PREFIX)
|
||||||
RoomMemberClientApi.API_PREFIX)
|
|
||||||
public interface RoomMemberClient extends RoomMemberClientApi {
|
public interface RoomMemberClient extends RoomMemberClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -6,8 +6,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
/**
|
/**
|
||||||
* @author lisizhe on 2023/9/31
|
* @author lisizhe on 2023/9/31
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "roomMikeTypeClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "roomMikeTypeClient", name = "rc-service-other", url = "${feign.other.url:}", path = RoomMikeTypeClientApi.API_PREFIX)
|
||||||
RoomMikeTypeClientApi.API_PREFIX)
|
|
||||||
public interface RoomMikeTypeClient extends RoomMikeTypeClientApi {
|
public interface RoomMikeTypeClient extends RoomMikeTypeClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/11/17
|
* @author pengliang on 2023/11/17
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "roomTouristClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "roomTouristClient", name = "rc-service-other", url = "${feign.other.url:}", path = RoomTouristClientApi.API_PREFIX)
|
||||||
RoomTouristClientApi.API_PREFIX)
|
|
||||||
public interface RoomTouristClient extends RoomTouristClientApi {
|
public interface RoomTouristClient extends RoomTouristClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/8/11
|
* @author pengliang on 2023/8/11
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "roomUserBlacklistClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "roomUserBlacklistClient", name = "rc-service-other", url = "${feign.other.url:}", path = RoomUserBlacklistClientApi.API_PREFIX)
|
||||||
RoomUserBlacklistClientApi.API_PREFIX)
|
|
||||||
public interface RoomUserBlacklistClient extends RoomUserBlacklistClientApi {
|
public interface RoomUserBlacklistClient extends RoomUserBlacklistClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/6/3
|
* @author pengliang on 2023/6/3
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "giftBackpackClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "giftBackpackClient", name = "rc-service-other", url = "${feign.other.url:}", path = GiftBackpackClientApi.API_PREFIX)
|
||||||
GiftBackpackClientApi.API_PREFIX)
|
|
||||||
public interface GiftBackpackClient extends GiftBackpackClientApi {
|
public interface GiftBackpackClient extends GiftBackpackClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/5/23
|
* @author pengliang on 2023/5/23
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "giftConfigClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "giftConfigClient", name = "rc-service-other", url = "${feign.other.url:}", path = GiftConfigClientApi.API_PREFIX)
|
||||||
GiftConfigClientApi.API_PREFIX)
|
|
||||||
public interface GiftConfigClient extends GiftConfigClientApi {
|
public interface GiftConfigClient extends GiftConfigClientApi {
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/8/18
|
* @author pengliang on 2023/8/18
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "giftCountAnchorDailyClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "giftCountAnchorDailyClient", name = "rc-service-other", url = "${feign.other.url:}", path = GiftCountAnchorDailyClientApi.API_PREFIX)
|
||||||
GiftCountAnchorDailyClientApi.API_PREFIX)
|
|
||||||
public interface GiftCountAnchorDailyClient extends GiftCountAnchorDailyClientApi {
|
public interface GiftCountAnchorDailyClient extends GiftCountAnchorDailyClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/8/19
|
* @author pengliang on 2023/8/19
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "giftGiveRunningWaterClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "giftGiveRunningWaterClient", name = "rc-service-other", url = "${feign.other.url:}", path = GiftGiveRunningWaterClientApi.API_PREFIX)
|
||||||
GiftGiveRunningWaterClientApi.API_PREFIX)
|
|
||||||
public interface GiftGiveRunningWaterClient extends GiftGiveRunningWaterClientApi {
|
public interface GiftGiveRunningWaterClient extends GiftGiveRunningWaterClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/6/3
|
* @author pengliang on 2023/6/3
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "badgeBackpackClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "badgeBackpackClient", name = "rc-service-other", url = "${feign.other.url:}", path = BadgeBackpackClientApi.API_PREFIX)
|
||||||
BadgeBackpackClientApi.API_PREFIX)
|
|
||||||
public interface BadgeBackpackClient extends BadgeBackpackClientApi {
|
public interface BadgeBackpackClient extends BadgeBackpackClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/6/6
|
* @author pengliang on 2023/6/6
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "badgeSourceClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "badgeSourceClient", name = "rc-service-other", url = "${feign.other.url:}", path = BadgeSourceClientApi.API_PREFIX)
|
||||||
BadgeSourceClientApi.API_PREFIX)
|
|
||||||
public interface BadgeSourceClient extends BadgeSourceClientApi {
|
public interface BadgeSourceClient extends BadgeSourceClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/6/5
|
* @author pengliang on 2023/6/5
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "emojiBackpackClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "emojiBackpackClient", name = "rc-service-other", url = "${feign.other.url:}", path = EmojiBackpackClientApi.API_PREFIX)
|
||||||
EmojiBackpackClientApi.API_PREFIX)
|
|
||||||
public interface EmojiBackpackClient extends EmojiBackpackClientApi {
|
public interface EmojiBackpackClient extends EmojiBackpackClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/6/10
|
* @author pengliang on 2023/6/10
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "emojiConfigClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "emojiConfigClient", name = "rc-service-other", url = "${feign.other.url:}", path = EmojiConfigClientApi.API_PREFIX)
|
||||||
EmojiConfigClientApi.API_PREFIX)
|
|
||||||
public interface EmojiConfigClient extends EmojiConfigClientApi {
|
public interface EmojiConfigClient extends EmojiConfigClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/6/3
|
* @author pengliang on 2023/6/3
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "fragmentsBackpackClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "fragmentsBackpackClient", name = "rc-service-other", url = "${feign.other.url:}", path = FragmentsBackpackClientApi.API_PREFIX)
|
||||||
FragmentsBackpackClientApi.API_PREFIX)
|
|
||||||
public interface FragmentsBackpackClient extends FragmentsBackpackClientApi {
|
public interface FragmentsBackpackClient extends FragmentsBackpackClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -9,8 +9,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
* @author system
|
* @author system
|
||||||
* @date 2025-11-07
|
* @date 2025-11-07
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "propCouponClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "propCouponClient", name = "rc-service-other", url = "${feign.other.url:}", path = PropCouponClientApi.API_PREFIX)
|
||||||
PropCouponClientApi.API_PREFIX)
|
|
||||||
public interface PropCouponClient extends PropCouponClientApi {
|
public interface PropCouponClient extends PropCouponClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author zongpubin on 2023/10/11
|
* @author zongpubin on 2023/10/11
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "propsActivityRewardConfigClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "propsActivityRewardConfigClient", name = "rc-service-other", url = "${feign.other.url:}", path = PropsActivityRewardConfigClientApi.API_PREFIX)
|
||||||
PropsActivityRewardConfigClientApi.API_PREFIX)
|
|
||||||
public interface PropsActivityRewardConfigClient extends PropsActivityRewardConfigClientApi {
|
public interface PropsActivityRewardConfigClient extends PropsActivityRewardConfigClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author zongpubin on 2023/10/23
|
* @author zongpubin on 2023/10/23
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "propsActivityRewardGroupClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "propsActivityRewardGroupClient", name = "rc-service-other", url = "${feign.other.url:}", path = PropsActivityRewardGroupClientApi.API_PREFIX)
|
||||||
PropsActivityRewardGroupClientApi.API_PREFIX)
|
|
||||||
public interface PropsActivityRewardGroupClient extends PropsActivityRewardGroupClientApi {
|
public interface PropsActivityRewardGroupClient extends PropsActivityRewardGroupClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/6/3
|
* @author pengliang on 2023/6/3
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "propsBackpackClientClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "propsBackpackClientClient", name = "rc-service-other", url = "${feign.other.url:}", path = PropsBackpackClientApi.API_PREFIX)
|
||||||
PropsBackpackClientApi.API_PREFIX)
|
|
||||||
public interface PropsBackpackClient extends PropsBackpackClientApi {
|
public interface PropsBackpackClient extends PropsBackpackClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/11/7
|
* @author pengliang on 2023/11/7
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "propsCommodityStoreClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "propsCommodityStoreClient", name = "rc-service-other", url = "${feign.other.url:}", path = PropsCommodityStoreClientApi.API_PREFIX)
|
||||||
PropsCommodityStoreClientApi.API_PREFIX)
|
|
||||||
public interface PropsCommodityStoreClient extends PropsCommodityStoreClientApi {
|
public interface PropsCommodityStoreClient extends PropsCommodityStoreClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/11/7
|
* @author pengliang on 2023/11/7
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "propsNobleVipClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "propsNobleVipClient", name = "rc-service-other", url = "${feign.other.url:}", path = PropsNobleVipClientApi.API_PREFIX)
|
||||||
PropsNobleVipClientApi.API_PREFIX)
|
|
||||||
public interface PropsNobleVipClient extends PropsNobleVipClientApi {
|
public interface PropsNobleVipClient extends PropsNobleVipClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author zongpubin on 2024/1/29
|
* @author zongpubin on 2024/1/29
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "propsRedPacketSkinClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "propsRedPacketSkinClient", name = "rc-service-other", url = "${feign.other.url:}", path = PropsRedPacketSkinClientApi.API_PREFIX)
|
||||||
PropsRedPacketSkinClientApi.API_PREFIX)
|
|
||||||
public interface PropsRedPacketSkinClient extends PropsRedPacketSkinClientApi {
|
public interface PropsRedPacketSkinClient extends PropsRedPacketSkinClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/11/7
|
* @author pengliang on 2023/11/7
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "propsRunningWaterClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "propsRunningWaterClient", name = "rc-service-other", url = "${feign.other.url:}", path = PropsRunningWaterClientApi.API_PREFIX)
|
||||||
PropsRunningWaterClientApi.API_PREFIX)
|
|
||||||
public interface PropsRunningWaterClient extends PropsRunningWaterClientApi {
|
public interface PropsRunningWaterClient extends PropsRunningWaterClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/11/7
|
* @author pengliang on 2023/11/7
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "propsSourceClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "propsSourceClient", name = "rc-service-other", url = "${feign.other.url:}", path = PropsSourceClientApi.API_PREFIX)
|
||||||
PropsSourceClientApi.API_PREFIX)
|
|
||||||
public interface PropsSourceClient extends PropsSourceClientApi {
|
public interface PropsSourceClient extends PropsSourceClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/8/10
|
* @author pengliang on 2023/8/10
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "propsStealthBrowseClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "propsStealthBrowseClient", name = "rc-service-other", url = "${feign.other.url:}", path = PropsStealthBrowseClientApi.API_PREFIX)
|
||||||
PropsStealthBrowseClientApi.API_PREFIX)
|
|
||||||
public interface PropsStealthBrowseClient extends PropsStealthBrowseClientApi {
|
public interface PropsStealthBrowseClient extends PropsStealthBrowseClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/6/3
|
* @author pengliang on 2023/6/3
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "propsStoreClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "propsStoreClient", name = "rc-service-other", url = "${feign.other.url:}", path = PropsToolClientApi.API_PREFIX)
|
||||||
PropsToolClientApi.API_PREFIX)
|
|
||||||
public interface PropsToolClient extends PropsToolClientApi {
|
public interface PropsToolClient extends PropsToolClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/6/3
|
* @author pengliang on 2023/6/3
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "roomBadgeClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "roomBadgeClient", name = "rc-service-other", url = "${feign.other.url:}", path = RoomBadgeClientApi.API_PREFIX)
|
||||||
RoomBadgeClientApi.API_PREFIX)
|
|
||||||
public interface RoomBadgeClient extends RoomBadgeClientApi {
|
public interface RoomBadgeClient extends RoomBadgeClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/6/6
|
* @author pengliang on 2023/6/6
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "roomThemeBackpackClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "roomThemeBackpackClient", name = "rc-service-other", url = "${feign.other.url:}", path = RoomThemeBackpackClientApi.API_PREFIX)
|
||||||
RoomThemeBackpackClientApi.API_PREFIX)
|
|
||||||
public interface RoomThemeBackpackClient extends RoomThemeBackpackClientApi {
|
public interface RoomThemeBackpackClient extends RoomThemeBackpackClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/6/6
|
* @author pengliang on 2023/6/6
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "roomThemeCustomizeBackpackClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "roomThemeCustomizeBackpackClient", name = "rc-service-other", url = "${feign.other.url:}", path = RoomThemeCustomizeBackpackClientApi.API_PREFIX)
|
||||||
RoomThemeCustomizeBackpackClientApi.API_PREFIX)
|
|
||||||
public interface RoomThemeCustomizeBackpackClient extends RoomThemeCustomizeBackpackClientApi {
|
public interface RoomThemeCustomizeBackpackClient extends RoomThemeCustomizeBackpackClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/12/4
|
* @author pengliang on 2023/12/4
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "roomThemeStoreClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "roomThemeStoreClient", name = "rc-service-other", url = "${feign.other.url:}", path = RoomThemeStoreClientApi.API_PREFIX)
|
||||||
RoomThemeStoreClientApi.API_PREFIX)
|
|
||||||
public interface RoomThemeStoreClient extends RoomThemeStoreClientApi {
|
public interface RoomThemeStoreClient extends RoomThemeStoreClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/12/4
|
* @author pengliang on 2023/12/4
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "roomThemeUserBackpackClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "roomThemeUserBackpackClient", name = "rc-service-other", url = "${feign.other.url:}", path = RoomThemeUserBackpackClientApi.API_PREFIX)
|
||||||
RoomThemeUserBackpackClientApi.API_PREFIX)
|
|
||||||
public interface RoomThemeUserBackpackClient extends RoomThemeUserBackpackClientApi {
|
public interface RoomThemeUserBackpackClient extends RoomThemeUserBackpackClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/12/4
|
* @author pengliang on 2023/12/4
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "roomThemeUserCustomizeClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "roomThemeUserCustomizeClient", name = "rc-service-other", url = "${feign.other.url:}", path = RoomThemeUserCustomizeClientApi.API_PREFIX)
|
||||||
RoomThemeUserCustomizeClientApi.API_PREFIX)
|
|
||||||
public interface RoomThemeUserCustomizeClient extends RoomThemeUserCustomizeClientApi {
|
public interface RoomThemeUserCustomizeClient extends RoomThemeUserCustomizeClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -9,7 +9,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
* @author xiaofei
|
* @author xiaofei
|
||||||
* @since 2024-04-12
|
* @since 2024-04-12
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "petPoolClient", url = "${feign.other.url}" + PetPoolClientApi.API_PREFIX)
|
@FeignClient(contextId = "petPoolClient", name = "rc-service-other", url = "${feign.other.url:}", path = PetPoolClientApi.API_PREFIX)
|
||||||
public interface PetPoolClient extends PetPoolClientApi {
|
public interface PetPoolClient extends PetPoolClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -9,8 +9,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
* @author system
|
* @author system
|
||||||
* @date 2025-01-15
|
* @date 2025-01-15
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "rocketConfigClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "rocketConfigClient", name = "rc-service-other", url = "${feign.other.url:}", path = RocketConfigClientApi.API_PREFIX)
|
||||||
RocketConfigClientApi.API_PREFIX)
|
|
||||||
public interface RocketConfigClient extends RocketConfigClientApi {
|
public interface RocketConfigClient extends RocketConfigClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author pengliang on 2023/8/11
|
* @author pengliang on 2023/8/11
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "administratorClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "administratorClient", name = "rc-service-other", url = "${feign.other.url:}", path = AdministratorClientApi.API_PREFIX)
|
||||||
AdministratorClientApi.API_PREFIX)
|
|
||||||
public interface AdministratorClient extends AdministratorClientApi {
|
public interface AdministratorClient extends AdministratorClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,8 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|||||||
*
|
*
|
||||||
* @author lisizhe on 2023/5/24
|
* @author lisizhe on 2023/5/24
|
||||||
*/
|
*/
|
||||||
@FeignClient(name = "anchorSalaryExchangeGoldClient", url = "${feign.other.url}" +
|
@FeignClient(contextId = "anchorSalaryExchangeGoldClient", name = "rc-service-other", url = "${feign.other.url:}", path = AnchorSalaryExchangeGoldClientApi.API_PREFIX)
|
||||||
AnchorSalaryExchangeGoldClientApi.API_PREFIX)
|
|
||||||
public interface AnchorSalaryExchangeGoldClient extends AnchorSalaryExchangeGoldClientApi {
|
public interface AnchorSalaryExchangeGoldClient extends AnchorSalaryExchangeGoldClientApi {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user