wuxw
2019-08-09 bf47d41dddf76c58a41692e492014499f9d433ae
java110-core/src/main/java/com/java110/core/smo/user/IUserInnerServiceSMO.java
@@ -1,7 +1,8 @@
package com.java110.core.smo.user;
import com.java110.core.feign.FeignConfiguration;
import com.java110.dto.UserDto;
import org.springframework.cloud.netflix.feign.FeignClient;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
@@ -11,7 +12,7 @@
/**
 * 用户服务接口类(供服务间调用)
 */
@FeignClient("user-service")
@FeignClient(name = "user-service", configuration = {FeignConfiguration.class})
@RequestMapping("/userApi")
public interface IUserInnerServiceSMO {