| | |
| | | |
| | | import com.java110.core.feign.FeignConfiguration; |
| | | import com.java110.dto.FeeConfigDto; |
| | | import org.springframework.cloud.netflix.feign.FeignClient; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RequestMethod; |
| | |
| | | * @Version 1.0 |
| | | * add by wuxw 2019/4/24 |
| | | **/ |
| | | @FeignClient(name = "community-service", configuration = {FeignConfiguration.class}) |
| | | @FeignClient(name = "fee-service", configuration = {FeignConfiguration.class}) |
| | | @RequestMapping("/feeConfigApi") |
| | | public interface IFeeConfigInnerServiceSMO { |
| | | |