| | |
| | | package com.java110.intf.fee; |
| | | |
| | | import com.java110.config.feign.FeignConfiguration; |
| | | import com.java110.dto.fee.FeeDetailDto; |
| | | import com.java110.dto.payFeeDetailMonth.PayFeeDetailMonthDto; |
| | | import com.java110.po.payFeeDetailMonth.PayFeeDetailMonthPo; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | |
| | | * @Version 1.0 |
| | | * add by wuxw 2019/4/24 |
| | | **/ |
| | | @FeignClient(name = "${java110.fee-service}", configuration = {FeignConfiguration.class}) |
| | | @FeignClient(name = "fee-service", configuration = {FeignConfiguration.class}) |
| | | @RequestMapping("/payFeeDetailMonthApi") |
| | | public interface IPayFeeDetailMonthInnerServiceSMO { |
| | | |
| | |
| | | */ |
| | | @RequestMapping(value = "/queryPayFeeDetailMonthsCount", method = RequestMethod.POST) |
| | | int queryPayFeeDetailMonthsCount(@RequestBody PayFeeDetailMonthDto payFeeDetailMonthDto); |
| | | |
| | | @RequestMapping(value = "/queryPayFeeDetailMaxMonths", method = RequestMethod.POST) |
| | | List<PayFeeDetailMonthDto> queryPayFeeDetailMaxMonths(@RequestBody PayFeeDetailMonthDto payFeeDetailMonthDto); |
| | | |
| | | /** |
| | | * 处理需要离散的缴费记录 |
| | | * @param payFeeDetailMonthDto |
| | | * @return |
| | | */ |
| | | @RequestMapping(value = "/getWaitDispersedFeeDetail", method = RequestMethod.POST) |
| | | List<FeeDetailDto> getWaitDispersedFeeDetail(@RequestBody PayFeeDetailMonthDto payFeeDetailMonthDto); |
| | | } |