From 35f4412614a4801dc26f9284c8c15457e1db2a7f Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期五, 15 三月 2024 14:55:40 +0800
Subject: [PATCH] 优化代码
---
service-report/src/main/java/com/java110/report/api/ReportFeeMonthStatisticsApi.java | 58 ----------------------------------------------------------
1 files changed, 0 insertions(+), 58 deletions(-)
diff --git a/service-report/src/main/java/com/java110/report/api/ReportFeeMonthStatisticsApi.java b/service-report/src/main/java/com/java110/report/api/ReportFeeMonthStatisticsApi.java
index df3ed45..89f402e 100755
--- a/service-report/src/main/java/com/java110/report/api/ReportFeeMonthStatisticsApi.java
+++ b/service-report/src/main/java/com/java110/report/api/ReportFeeMonthStatisticsApi.java
@@ -276,64 +276,6 @@
return getReportFeeMonthStatisticsBMOImpl.queryOweFeeDetail(reportFeeMonthStatisticsDto);
}
- /**
- * 缂磋垂鏄庣粏琛�
- *
- * @param communityId 灏忓尯ID
- * @return
- * @serviceCode /reportFeeMonthStatistics/queryPayFeeDetail
- * @path /app/reportFeeMonthStatistics/queryPayFeeDetail
- */
- @RequestMapping(value = "/queryPayFeeDetail", method = RequestMethod.GET)
- public ResponseEntity<String> queryPayFeeDetail(@RequestParam(value = "communityId") String communityId,
- @RequestParam(value = "floorId", required = false) String floorId,
- @RequestParam(value = "floorNum", required = false) String floorNum,
- @RequestParam(value = "unitNum", required = false) String unitNum,
- @RequestParam(value = "unitId", required = false) String unitId,
- @RequestParam(value = "roomId", required = false) String roomId,
- @RequestParam(value = "roomNum", required = false) String roomNum,
- @RequestParam(value = "primeRate", required = false) String primeRate,
- @RequestParam(value = "state", required = false) String state,
- @RequestParam(value = "feeTypeCd", required = false) String feeTypeCd,
- @RequestParam(value = "configId", required = false) String configId,
- @RequestParam(value = "startTime", required = false) String startTime,
- @RequestParam(value = "endTime", required = false) String endTime,
- @RequestParam(value = "feeStartTime", required = false) String feeStartTime,
- @RequestParam(value = "feeEndTime", required = false) String feeEndTime,
- @RequestParam(value = "objId", required = false) String objId,
- @RequestParam(value = "roomName", required = false) String roomName,
- @RequestParam(value = "page") int page,
- @RequestParam(value = "row") int row) {
- ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto = new ReportFeeMonthStatisticsDto();
- reportFeeMonthStatisticsDto.setPage(page);
- reportFeeMonthStatisticsDto.setRow(row);
- reportFeeMonthStatisticsDto.setCommunityId(communityId);
- reportFeeMonthStatisticsDto.setFloorId(floorId);
- reportFeeMonthStatisticsDto.setFloorNum(floorNum);
- reportFeeMonthStatisticsDto.setUnitId(unitId);
- reportFeeMonthStatisticsDto.setUnitNum(unitNum);
- reportFeeMonthStatisticsDto.setRoomId(roomId);
- reportFeeMonthStatisticsDto.setRoomNum(roomNum);
- reportFeeMonthStatisticsDto.setPrimeRate(primeRate);
- reportFeeMonthStatisticsDto.setState(state);
- reportFeeMonthStatisticsDto.setFeeTypeCd(feeTypeCd);
- reportFeeMonthStatisticsDto.setConfigId(configId);
- reportFeeMonthStatisticsDto.setStartTime(startTime);
- /*if(!StringUtil.isEmpty(endTime)){
- endTime += " 23:59:59";
- }*/
- reportFeeMonthStatisticsDto.setEndTime(endTime);
- reportFeeMonthStatisticsDto.setFeeStartTime(feeStartTime);
- reportFeeMonthStatisticsDto.setFeeEndTime(feeEndTime);
- reportFeeMonthStatisticsDto.setObjId(objId);
- if (!StringUtil.isEmpty(roomName)) {
- String[] roomNameArray = roomName.split("-", 3);
- reportFeeMonthStatisticsDto.setFloorNum(roomNameArray[0]);
- reportFeeMonthStatisticsDto.setUnitNum(roomNameArray[1]);
- reportFeeMonthStatisticsDto.setRoomNum(roomNameArray[2]);
- }
- return getReportFeeMonthStatisticsBMOImpl.queryPayFeeDetail(reportFeeMonthStatisticsDto);
- }
/**
* 鎶奸噾鎶ヨ〃
--
Gitblit v1.8.0