1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.xinquan.course.api.feign;
|
| import com.xinquan.common.core.constant.ServiceNameConstants;
| import com.xinquan.course.api.factory.RemoteCourseFallbackFactory;
| import org.springframework.cloud.openfeign.FeignClient;
|
| /**
| * @author mitao
| * @date 2024/8/21
| */
| @FeignClient(contextId = "remoteFileService", value = ServiceNameConstants.COURSE_SERVICE, fallbackFactory = RemoteCourseFallbackFactory.class)
| public interface RemoteCourseService {
|
| }
|
|