| | |
| | | * @param reportFeeMonthStatisticsDto |
| | | * @return |
| | | */ |
| | | @RequestMapping(value = "/queryReportFeeSummaryCount", method = RequestMethod.POST) |
| | | int queryReportFeeSummaryCount(@RequestBody ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto); |
| | | |
| | | /** |
| | |
| | | * @param reportFeeMonthStatisticsDto |
| | | * @return |
| | | */ |
| | | @RequestMapping(value = "/queryReportFeeSummary", method = RequestMethod.POST) |
| | | List<ReportFeeMonthStatisticsDto> queryReportFeeSummary(@RequestBody ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto); |
| | | } |
| | |
| | | |
| | | @Override |
| | | public ResponseEntity<String> queryReportFeeSummary(ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto) { |
| | | int count = reportFeeMonthStatisticsInnerServiceSMOImpl.queryReportFeeMonthStatisticssCount(reportFeeMonthStatisticsDto); |
| | | int count = reportFeeMonthStatisticsInnerServiceSMOImpl.queryReportFeeSummaryCount(reportFeeMonthStatisticsDto); |
| | | |
| | | List<ReportFeeMonthStatisticsDto> reportFeeMonthStatisticsDtos = null; |
| | | if (count > 0) { |
| | | reportFeeMonthStatisticsDtos = reportFeeMonthStatisticsInnerServiceSMOImpl.queryReportFeeMonthStatisticss(reportFeeMonthStatisticsDto); |
| | | reportFeeMonthStatisticsDtos = reportFeeMonthStatisticsInnerServiceSMOImpl.queryReportFeeSummary(reportFeeMonthStatisticsDto); |
| | | } else { |
| | | reportFeeMonthStatisticsDtos = new ArrayList<>(); |
| | | } |
| | |
| | | filters: stat,wall,log4j |
| | | poolPreparedStatements: true |
| | | |
| | | shardingRule: |
| | | tables: |
| | | business_xxx: |
| | | actualDataNodes: ds0.business_community |
| | | databaseStrategy: |
| | | inline: |
| | | shardingColumn: community_id |
| | | algorithmExpression: ds${Long.parseLong(community_id) % 2} |
| | | |
| | | bindingTables: |
| | | - business_xxx |
| | | |
| | | defaultDataSourceName: ds0 |
| | | defaultDatabaseStrategy: |