| | |
| | | package com.java110.intf.acct; |
| | | |
| | | import com.java110.config.feign.FeignConfiguration; |
| | | import com.java110.dto.accountBond.AccountBondDto; |
| | | import com.java110.dto.account.AccountBondDto; |
| | | import com.java110.po.accountBond.AccountBondPo; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | |
| | | * @Version 1.0 |
| | | * add by wuxw 2019/4/24 |
| | | **/ |
| | | @FeignClient(name = "${java110.acct-service}", configuration = {FeignConfiguration.class}) |
| | | @FeignClient(name = "acct-service", configuration = {FeignConfiguration.class}) |
| | | @RequestMapping("/accountBondApi") |
| | | public interface IAccountBondInnerServiceSMO { |
| | | |