| | |
| | | |
| | | import com.java110.config.feign.FeignConfiguration; |
| | | import com.java110.dto.fee.FeeAccountDetailDto; |
| | | import com.java110.po.feeAccountDetail.FeeAccountDetailPo; |
| | | import com.java110.po.fee.FeeAccountDetailPo; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | |
| | | * @author fqz |
| | | * @date 2022-05-16 |
| | | */ |
| | | @FeignClient(name = "${java110.fee-service}", configuration = {FeignConfiguration.class}) |
| | | @FeignClient(name = "fee-service", configuration = {FeignConfiguration.class}) |
| | | @RequestMapping("/feeAccountDetailApi") |
| | | public interface IFeeAccountDetailServiceSMO { |
| | | |