From 05683f2b2bdbdbe21cf17ad523c21ab338bd1c54 Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期二, 19 七月 2022 21:49:55 +0800
Subject: [PATCH] 优化添加设备 功能

---
 service-report/src/main/java/com/java110/report/api/ReportFeeMonthStatisticsApi.java |  142 ++++++++++++++++++++++++++++++++++++++--------
 1 files changed, 116 insertions(+), 26 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 75d0505..cc10983 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
@@ -19,6 +19,8 @@
 import org.springframework.web.bind.annotation.*;
 
 import java.util.Calendar;
+import java.util.HashMap;
+import java.util.Map;
 
 @RestController
 @RequestMapping(value = "/reportFeeMonthStatistics")
@@ -129,6 +131,7 @@
                                                         @RequestParam(value = "roomNum", required = false) String roomNum,
                                                         @RequestParam(value = "startTime", required = false) String startTime,
                                                         @RequestParam(value = "endTime", required = false) String endTime,
+                                                        @RequestParam(value = "configIds", required = false) String configIds,
                                                         @RequestParam(value = "page") int page,
                                                         @RequestParam(value = "row") int row) {
         ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto = new ReportFeeMonthStatisticsDto();
@@ -143,6 +146,9 @@
         reportFeeMonthStatisticsDto.setRoomNum(roomNum);
         reportFeeMonthStatisticsDto.setStartTime(startTime);
         reportFeeMonthStatisticsDto.setEndTime(endTime);
+        if (!StringUtil.isEmpty(configIds)) {
+            reportFeeMonthStatisticsDto.setConfigIds(configIds.split(","));
+        }
         return getReportFeeMonthStatisticsBMOImpl.queryReportFeeSummary(reportFeeMonthStatisticsDto);
     }
 
@@ -164,6 +170,7 @@
                                                            @RequestParam(value = "roomNum", required = false) String roomNum,
                                                            @RequestParam(value = "startTime", required = false) String startTime,
                                                            @RequestParam(value = "endTime", required = false) String endTime,
+                                                           @RequestParam(value = "configIds", required = false) String configIds,
                                                            @RequestParam(value = "page") int page,
                                                            @RequestParam(value = "row") int row) {
         ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto = new ReportFeeMonthStatisticsDto();
@@ -178,6 +185,9 @@
         reportFeeMonthStatisticsDto.setRoomNum(roomNum);
         reportFeeMonthStatisticsDto.setStartTime(startTime);
         reportFeeMonthStatisticsDto.setEndTime(endTime);
+        if (!StringUtil.isEmpty(configIds)) {
+            reportFeeMonthStatisticsDto.setConfigIds(configIds.split(","));
+        }
         return getReportFeeMonthStatisticsBMOImpl.queryReportFloorUnitFeeSummary(reportFeeMonthStatisticsDto);
     }
 
@@ -201,6 +211,7 @@
                                                     @RequestParam(value = "feeTypeCd", required = false) String feeTypeCd,
                                                     @RequestParam(value = "startTime", required = false) String startTime,
                                                     @RequestParam(value = "endTime", required = false) String endTime,
+                                                    @RequestParam(value = "yearMonth", required = false) String yearMonth,
                                                     @RequestParam(value = "page") int page,
                                                     @RequestParam(value = "row") int row) {
         ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto = new ReportFeeMonthStatisticsDto();
@@ -215,6 +226,7 @@
         reportFeeMonthStatisticsDto.setRoomNum(roomNum);
         reportFeeMonthStatisticsDto.setConfigId(configId);
         reportFeeMonthStatisticsDto.setFeeTypeCd(feeTypeCd);
+        reportFeeMonthStatisticsDto.setYearMonth(yearMonth);
         if (!StringUtil.isEmpty(startTime)) {
             reportFeeMonthStatisticsDto.setStartTime(startTime + " 00:00:00");
         }
@@ -240,6 +252,7 @@
                                                  @RequestParam(value = "unitId", required = false) String unitId,
                                                  @RequestParam(value = "roomId", required = false) String roomId,
                                                  @RequestParam(value = "roomNum", required = false) String roomNum,
+                                                 @RequestParam(value = "feeTypeCd", required = false) String feeTypeCd,
                                                  @RequestParam(value = "startTime", required = false) String startTime,
                                                  @RequestParam(value = "endTime", required = false) String endTime,
                                                  @RequestParam(value = "feeName", required = false) String feeName,
@@ -258,6 +271,7 @@
         reportFeeMonthStatisticsDto.setRoomNum(roomNum);
         reportFeeMonthStatisticsDto.setFeeName(feeName);
         reportFeeMonthStatisticsDto.setConfigId(configId);
+        reportFeeMonthStatisticsDto.setFeeTypeCd(feeTypeCd);
         reportFeeMonthStatisticsDto.setStartTime(startTime);
         reportFeeMonthStatisticsDto.setEndTime(endTime);
         return getReportFeeMonthStatisticsBMOImpl.queryFeeDetail(reportFeeMonthStatisticsDto);
@@ -281,6 +295,7 @@
                                                     @RequestParam(value = "roomNum", required = false) String roomNum,
                                                     @RequestParam(value = "startTime", required = false) String startTime,
                                                     @RequestParam(value = "endTime", required = false) String endTime,
+                                                    @RequestParam(value = "objName", required = false) String objName,
                                                     @RequestParam(value = "page") int page,
                                                     @RequestParam(value = "row") int row) {
         ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto = new ReportFeeMonthStatisticsDto();
@@ -295,6 +310,7 @@
         reportFeeMonthStatisticsDto.setRoomNum(roomNum);
         reportFeeMonthStatisticsDto.setStartTime(startTime);
         reportFeeMonthStatisticsDto.setEndTime(endTime);
+        reportFeeMonthStatisticsDto.setObjName(objName);
         return getReportFeeMonthStatisticsBMOImpl.queryOweFeeDetail(reportFeeMonthStatisticsDto);
     }
 
@@ -320,6 +336,7 @@
                                                     @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();
@@ -338,6 +355,7 @@
         reportFeeMonthStatisticsDto.setConfigId(configId);
         reportFeeMonthStatisticsDto.setStartTime(startTime);
         reportFeeMonthStatisticsDto.setEndTime(endTime);
+        reportFeeMonthStatisticsDto.setObjId(objId);
         return getReportFeeMonthStatisticsBMOImpl.queryPayFeeDetail(reportFeeMonthStatisticsDto);
     }
 
@@ -539,22 +557,6 @@
         return getReportFeeMonthStatisticsBMOImpl.queryOwePaymentCount(reportFeeMonthStatisticsDto);
     }
 
-
-    /**
-     * 鏌ヨ璐圭敤鍒嗛」琛�
-     *
-     * @param communityId 灏忓尯ID
-     * @return
-     * @serviceCode /reportFeeMonthStatistics/queryReportProficient
-     * @path /app/reportFeeMonthStatistics/queryReportProficient
-     */
-    @RequestMapping(value = "/queryReportProficient", method = RequestMethod.GET)
-    public ResponseEntity<String> queryReportProficient(@RequestParam(value = "communityId") String communityId) {
-        ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto = new ReportFeeMonthStatisticsDto();
-        reportFeeMonthStatisticsDto.setCommunityId(communityId);
-        return getReportFeeMonthStatisticsBMOImpl.queryReportProficientCount(reportFeeMonthStatisticsDto);
-    }
-
     /**
      * 鏌ヨ鏈敹璐规埧灞�
      * select t.* from building_room t
@@ -577,11 +579,9 @@
      * @path /app/reportFeeMonthStatistics/queryNoFeeRooms
      */
     @RequestMapping(value = "/queryNoFeeRooms", method = RequestMethod.GET)
-    public ResponseEntity<String> queryNoFeeRooms(
-            @RequestParam(value = "communityId") String communityId,
-            @RequestParam(value = "page") int page,
-            @RequestParam(value = "row") int row
-    ) {
+    public ResponseEntity<String> queryNoFeeRooms(@RequestParam(value = "communityId") String communityId,
+                                                  @RequestParam(value = "page") int page,
+                                                  @RequestParam(value = "row") int row) {
         RoomDto roomDto = new RoomDto();
         roomDto.setCommunityId(communityId);
         roomDto.setPage(page);
@@ -601,17 +601,107 @@
      * @path /app/reportFeeMonthStatistics/queryHuaningOweFee
      */
     @RequestMapping(value = "/queryHuaningOweFee", method = RequestMethod.GET)
-    public ResponseEntity<String> queryHuaningOweFee(
-            @RequestParam(value = "communityId") String communityId,
-            @RequestParam(value = "page") int page,
-            @RequestParam(value = "row") int row
-    ) {
+    public ResponseEntity<String> queryHuaningOweFee(@RequestParam(value = "communityId") String communityId,
+                                                     @RequestParam(value = "configId", required = false) String configId,
+                                                     @RequestParam(value = "feeTypeCd", required = false) String feeTypeCd,
+                                                     @RequestParam(value = "floorNum", required = false) String floorNum,
+                                                     @RequestParam(value = "page") int page,
+                                                     @RequestParam(value = "row") int row) {
         ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto = new ReportFeeMonthStatisticsDto();
         reportFeeMonthStatisticsDto.setCommunityId(communityId);
+        reportFeeMonthStatisticsDto.setConfigId(configId);
+        reportFeeMonthStatisticsDto.setFeeTypeCd(feeTypeCd);
+        reportFeeMonthStatisticsDto.setFloorNum(floorNum);
         reportFeeMonthStatisticsDto.setPage(page);
         reportFeeMonthStatisticsDto.setRow(row);
         reportFeeMonthStatisticsDto.setFeeYear(DateUtil.getYear() + "");
         return getReportFeeMonthStatisticsBMOImpl.queryHuaningOweFee(reportFeeMonthStatisticsDto);
     }
 
+    /**
+     * 鏌ヨ鍗庡畞鐗╀笟 娆犺垂缁熻鎶ヨ〃
+     * 浣滆�咃細 鍚村鏂�
+     * 鏃堕棿锛�2021-08-13
+     *
+     * @param communityId 灏忓尯ID
+     * @return
+     * @serviceCode /reportFeeMonthStatistics/queryHuaningPayFee
+     * @path /app/reportFeeMonthStatistics/queryHuaningPayFee
+     */
+    @RequestMapping(value = "/queryHuaningPayFee", method = RequestMethod.GET)
+    public ResponseEntity<String> queryHuaningPayFee(@RequestParam(value = "communityId") String communityId,
+                                                     @RequestParam(value = "configId", required = false) String configId,
+                                                     @RequestParam(value = "feeTypeCd", required = false) String feeTypeCd,
+                                                     @RequestParam(value = "floorNum", required = false) String floorNum,
+                                                     @RequestParam(value = "year", required = false) int year,
+                                                     @RequestParam(value = "month", required = false) int month,
+                                                     @RequestParam(value = "page") int page,
+                                                     @RequestParam(value = "row") int row) {
+        Map paramInfo = new HashMap();
+        paramInfo.put("communityId", communityId);
+        paramInfo.put("configId", configId);
+        paramInfo.put("feeTypeCd", feeTypeCd);
+        paramInfo.put("floorNum", floorNum);
+        paramInfo.put("year", year);
+        paramInfo.put("month", month);
+        paramInfo.put("page", page);
+        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);
+    }
+
+
 }

--
Gitblit v1.8.0