| | |
| | | @RequestParam(value = "configId", required = false) String configId, |
| | | @RequestParam(value = "startTime", required = false) String startTime, |
| | | @RequestParam(value = "endTime", required = false) String endTime, |
| | | @RequestParam(value = "objId", required = false) String objId, |
| | | @RequestParam(value = "page") int page, |
| | | @RequestParam(value = "row") int row) { |
| | | ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto = new ReportFeeMonthStatisticsDto(); |
| | |
| | | reportFeeMonthStatisticsDto.setConfigId(configId); |
| | | reportFeeMonthStatisticsDto.setStartTime(startTime); |
| | | reportFeeMonthStatisticsDto.setEndTime(endTime); |
| | | reportFeeMonthStatisticsDto.setObjId(objId); |
| | | return getReportFeeMonthStatisticsBMOImpl.queryPayFeeDetail(reportFeeMonthStatisticsDto); |
| | | } |
| | | |
| | |
| | | paramInfo.put("row", row); |
| | | return getReportFeeMonthStatisticsBMOImpl.queryHuaningPayFee(paramInfo); |
| | | } |
| | | /** |
| | | * 查询华宁物业 欠费统计报表 |
| | | * 作者: 吴学文 |
| | | * 时间:2021-08-13 |
| | | * |
| | | * @param communityId 小区ID |
| | | * @return |
| | | * @serviceCode /reportFeeMonthStatistics/queryHuaningPayFeeTwo |
| | | * @path /app/reportFeeMonthStatistics/queryHuaningPayFeeTwo |
| | | */ |
| | | @RequestMapping(value = "/queryHuaningPayFeeTwo", method = RequestMethod.GET) |
| | | public ResponseEntity<String> queryHuaningPayFeeTwo( |
| | | @RequestParam(value = "communityId") String communityId, |
| | | @RequestParam(value = "year") int year, |
| | | @RequestParam(value = "month") int month, |
| | | @RequestParam(value = "page") int page, |
| | | @RequestParam(value = "row") int row |
| | | ) { |
| | | Map paramInfo = new HashMap(); |
| | | paramInfo.put("communityId", communityId); |
| | | paramInfo.put("year", year); |
| | | paramInfo.put("month", month); |
| | | paramInfo.put("page", page); |
| | | paramInfo.put("row", row); |
| | | return getReportFeeMonthStatisticsBMOImpl.queryHuaningPayFeeTwo(paramInfo); |
| | | } |
| | | /** |
| | | * 查询华宁物业 欠费统计报表 |
| | | * 作者: 吴学文 |
| | | * 时间:2021-08-13 |
| | | * |
| | | * @param communityId 小区ID |
| | | * @return |
| | | * @serviceCode /reportFeeMonthStatistics/queryHuaningOweFeeDetail |
| | | * @path /app/reportFeeMonthStatistics/queryHuaningOweFeeDetail |
| | | */ |
| | | @RequestMapping(value = "/queryHuaningOweFeeDetail", method = RequestMethod.GET) |
| | | public ResponseEntity<String> queryHuaningOweFeeDetail( |
| | | @RequestParam(value = "communityId") String communityId, |
| | | @RequestParam(value = "year") int year, |
| | | @RequestParam(value = "month") int month, |
| | | @RequestParam(value = "page") int page, |
| | | @RequestParam(value = "row") int row |
| | | ) { |
| | | Map paramInfo = new HashMap(); |
| | | paramInfo.put("communityId", communityId); |
| | | paramInfo.put("year", year); |
| | | paramInfo.put("month", month); |
| | | paramInfo.put("page", page); |
| | | paramInfo.put("row", row); |
| | | return getReportFeeMonthStatisticsBMOImpl.queryHuaningOweFeeDetail(paramInfo); |
| | | } |
| | | |
| | | |
| | | } |