| | |
| | | import org.springframework.web.bind.annotation.RequestMethod; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @ClassName IReportFeeYearCollectionInnerServiceSMO |
| | |
| | | * @Version 1.0 |
| | | * add by wuxw 2019/4/24 |
| | | **/ |
| | | @FeignClient(name = "report-service", configuration = {FeignConfiguration.class}) |
| | | @FeignClient(name = "${java110.report-service}", configuration = {FeignConfiguration.class}) |
| | | @RequestMapping("/reportFeeYearCollectionApi") |
| | | public interface IReportFeeYearCollectionInnerServiceSMO { |
| | | |
| | |
| | | */ |
| | | @RequestMapping(value = "/queryReportFeeYearCollectionsCount", method = RequestMethod.POST) |
| | | int queryReportFeeYearCollectionsCount(@RequestBody ReportFeeYearCollectionDto reportFeeYearCollectionDto); |
| | | |
| | | @RequestMapping(value = "/getReportFeeYearCollectionInfo", method = RequestMethod.POST) |
| | | List<Map> getReportFeeYearCollectionInfo(@RequestBody Map beanCovertMap); |
| | | |
| | | @RequestMapping(value = "/saveReportFeeYearCollectionInfo", method = RequestMethod.POST) |
| | | void saveReportFeeYearCollectionInfo(@RequestBody Map beanCovertMap); |
| | | } |