| | |
| | | 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; |
| | |
| | | @RequestMapping(value = "/savePayFeeDetailMonth", method = RequestMethod.POST) |
| | | public int savePayFeeDetailMonth(@RequestBody PayFeeDetailMonthPo payFeeDetailMonthPo); |
| | | |
| | | @RequestMapping(value = "/savePayFeeDetailMonths", method = RequestMethod.POST) |
| | | public int savePayFeeDetailMonths(@RequestBody List<PayFeeDetailMonthPo> payFeeDetailMonthPos); |
| | | |
| | | |
| | | @RequestMapping(value = "/updatePayFeeDetailMonth", method = RequestMethod.POST) |
| | | public int updatePayFeeDetailMonth(@RequestBody PayFeeDetailMonthPo payFeeDetailMonthPo); |
| | | |
| | |
| | | */ |
| | | @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); |
| | | } |