| | |
| | | * @Version 1.0 |
| | | * add by wuxw 2019/4/24 |
| | | **/ |
| | | @FeignClient(name = "fee-service", configuration = {FeignConfiguration.class}) |
| | | @FeignClient(name = "${java110.fee-service}", configuration = {FeignConfiguration.class}) |
| | | @RequestMapping("/payFeeDetailMonthApi") |
| | | public interface IPayFeeDetailMonthInnerServiceSMO { |
| | | |
| | |
| | | @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); |
| | | |