| | |
| | | * @Version 1.0 |
| | | * add by wuxw 2019/4/24 |
| | | **/ |
| | | @FeignClient(name = "${java110.report-service}", configuration = {FeignConfiguration.class}) |
| | | @FeignClient(name = "report-service", configuration = {FeignConfiguration.class}) |
| | | @RequestMapping("/reportOweFeeApi") |
| | | public interface IReportOweFeeInnerServiceSMO { |
| | | |
| | |
| | | @RequestMapping(value = "/deleteInvalidFee", method = RequestMethod.POST) |
| | | int deleteInvalidFee(@RequestBody Map reportOweFeeDto); |
| | | |
| | | @RequestMapping(value = "/queryOweFeesByOwnerIds", method = RequestMethod.POST) |
| | | List<Map> queryOweFeesByOwnerIds(@RequestBody Map info); |
| | | |
| | | @RequestMapping(value = "/queryOweFeesByRoomIds", method = RequestMethod.POST) |
| | | List<Map> queryOweFeesByRoomIds(@RequestBody Map info); |
| | | } |