| | |
| | | package com.java110.intf.fee; |
| | | |
| | | import com.java110.config.feign.FeignConfiguration; |
| | | import com.java110.dto.payFeeDetailMonth.PayFeeDetailMonthDto; |
| | | import com.java110.po.payFeeDetailMonth.PayFeeDetailMonthPo; |
| | | import com.java110.dto.fee.FeeDetailDto; |
| | | import com.java110.dto.payFee.PayFeeDetailMonthDto; |
| | | import com.java110.po.payFee.PayFeeDetailMonthPo; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | |
| | | |
| | | @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); |
| | | |
| | | /** |
| | | * 专门给页面展示使用 |
| | | * @param payFeeDetailMonthDto |
| | | * @return |
| | | */ |
| | | @RequestMapping(value = "/queryPagePayFeeDetailMonths", method = RequestMethod.POST) |
| | | List<PayFeeDetailMonthDto> queryPagePayFeeDetailMonths(@RequestBody PayFeeDetailMonthDto payFeeDetailMonthDto); |
| | | |
| | | @RequestMapping(value = "/queryPagePayFeeDetailMonthsCount", method = RequestMethod.POST) |
| | | int queryPagePayFeeDetailMonthsCount(@RequestBody PayFeeDetailMonthDto payFeeDetailMonthDto); |
| | | } |