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 |  401 +++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 390 insertions(+), 11 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
old mode 100644
new mode 100755
index 8b131bb..cc10983
--- a/service-report/src/main/java/com/java110/report/api/ReportFeeMonthStatisticsApi.java
+++ b/service-report/src/main/java/com/java110/report/api/ReportFeeMonthStatisticsApi.java
@@ -1,6 +1,9 @@
 package com.java110.report.api;
 
 import com.alibaba.fastjson.JSONObject;
+import com.java110.dto.RoomDto;
+import com.java110.dto.repair.RepairUserDto;
+import com.java110.dto.report.ReportDeposit;
 import com.java110.dto.reportFeeMonthStatistics.ReportFeeMonthStatisticsDto;
 import com.java110.po.reportFeeMonthStatistics.ReportFeeMonthStatisticsPo;
 import com.java110.report.bmo.reportFeeMonthStatistics.IDeleteReportFeeMonthStatisticsBMO;
@@ -16,7 +19,8 @@
 import org.springframework.web.bind.annotation.*;
 
 import java.util.Calendar;
-
+import java.util.HashMap;
+import java.util.Map;
 
 @RestController
 @RequestMapping(value = "/reportFeeMonthStatistics")
@@ -24,8 +28,10 @@
 
     @Autowired
     private ISaveReportFeeMonthStatisticsBMO saveReportFeeMonthStatisticsBMOImpl;
+
     @Autowired
     private IUpdateReportFeeMonthStatisticsBMO updateReportFeeMonthStatisticsBMOImpl;
+
     @Autowired
     private IDeleteReportFeeMonthStatisticsBMO deleteReportFeeMonthStatisticsBMOImpl;
 
@@ -125,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();
@@ -137,8 +144,11 @@
         reportFeeMonthStatisticsDto.setUnitNum(unitNum);
         reportFeeMonthStatisticsDto.setRoomId(roomId);
         reportFeeMonthStatisticsDto.setRoomNum(roomNum);
-        reportFeeMonthStatisticsDto.setStartTime(StringUtil.isEmpty(startTime) ? null : startTime + "-01");
-        reportFeeMonthStatisticsDto.setEndTime(StringUtil.isEmpty(endTime) ? null : endTime + "-01");
+        reportFeeMonthStatisticsDto.setStartTime(startTime);
+        reportFeeMonthStatisticsDto.setEndTime(endTime);
+        if (!StringUtil.isEmpty(configIds)) {
+            reportFeeMonthStatisticsDto.setConfigIds(configIds.split(","));
+        }
         return getReportFeeMonthStatisticsBMOImpl.queryReportFeeSummary(reportFeeMonthStatisticsDto);
     }
 
@@ -160,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();
@@ -172,8 +183,11 @@
         reportFeeMonthStatisticsDto.setUnitNum(unitNum);
         reportFeeMonthStatisticsDto.setRoomId(roomId);
         reportFeeMonthStatisticsDto.setRoomNum(roomNum);
-        reportFeeMonthStatisticsDto.setStartTime(StringUtil.isEmpty(startTime) ? null : startTime + "-01");
-        reportFeeMonthStatisticsDto.setEndTime(StringUtil.isEmpty(endTime) ? null : endTime + "-01");
+        reportFeeMonthStatisticsDto.setStartTime(startTime);
+        reportFeeMonthStatisticsDto.setEndTime(endTime);
+        if (!StringUtil.isEmpty(configIds)) {
+            reportFeeMonthStatisticsDto.setConfigIds(configIds.split(","));
+        }
         return getReportFeeMonthStatisticsBMOImpl.queryReportFloorUnitFeeSummary(reportFeeMonthStatisticsDto);
     }
 
@@ -193,8 +207,11 @@
                                                     @RequestParam(value = "unitId", required = false) String unitId,
                                                     @RequestParam(value = "roomId", required = false) String roomId,
                                                     @RequestParam(value = "roomNum", required = false) String roomNum,
+                                                    @RequestParam(value = "configId", required = false) String configId,
+                                                    @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();
@@ -207,8 +224,15 @@
         reportFeeMonthStatisticsDto.setUnitNum(unitNum);
         reportFeeMonthStatisticsDto.setRoomId(roomId);
         reportFeeMonthStatisticsDto.setRoomNum(roomNum);
-        reportFeeMonthStatisticsDto.setStartTime(StringUtil.isEmpty(startTime) ? null : startTime + "-01");
-        reportFeeMonthStatisticsDto.setEndTime(StringUtil.isEmpty(endTime) ? null : endTime + "-01");
+        reportFeeMonthStatisticsDto.setConfigId(configId);
+        reportFeeMonthStatisticsDto.setFeeTypeCd(feeTypeCd);
+        reportFeeMonthStatisticsDto.setYearMonth(yearMonth);
+        if (!StringUtil.isEmpty(startTime)) {
+            reportFeeMonthStatisticsDto.setStartTime(startTime + " 00:00:00");
+        }
+        if (!StringUtil.isEmpty(endTime)) {
+            reportFeeMonthStatisticsDto.setEndTime(endTime + " 23:59:59");
+        }
         return getReportFeeMonthStatisticsBMOImpl.queryFeeBreakdown(reportFeeMonthStatisticsDto);
     }
 
@@ -228,8 +252,11 @@
                                                  @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,
+                                                 @RequestParam(value = "configId", required = false) String configId,
                                                  @RequestParam(value = "page") int page,
                                                  @RequestParam(value = "row") int row) {
         ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto = new ReportFeeMonthStatisticsDto();
@@ -242,8 +269,11 @@
         reportFeeMonthStatisticsDto.setUnitNum(unitNum);
         reportFeeMonthStatisticsDto.setRoomId(roomId);
         reportFeeMonthStatisticsDto.setRoomNum(roomNum);
-        reportFeeMonthStatisticsDto.setStartTime(StringUtil.isEmpty(startTime) ? null : startTime + "-01");
-        reportFeeMonthStatisticsDto.setEndTime(StringUtil.isEmpty(endTime) ? null : endTime + "-01");
+        reportFeeMonthStatisticsDto.setFeeName(feeName);
+        reportFeeMonthStatisticsDto.setConfigId(configId);
+        reportFeeMonthStatisticsDto.setFeeTypeCd(feeTypeCd);
+        reportFeeMonthStatisticsDto.setStartTime(startTime);
+        reportFeeMonthStatisticsDto.setEndTime(endTime);
         return getReportFeeMonthStatisticsBMOImpl.queryFeeDetail(reportFeeMonthStatisticsDto);
     }
 
@@ -265,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();
@@ -277,9 +308,176 @@
         reportFeeMonthStatisticsDto.setUnitNum(unitNum);
         reportFeeMonthStatisticsDto.setRoomId(roomId);
         reportFeeMonthStatisticsDto.setRoomNum(roomNum);
-        reportFeeMonthStatisticsDto.setStartTime(StringUtil.isEmpty(startTime) ? null : startTime + "-01");
-        reportFeeMonthStatisticsDto.setEndTime(StringUtil.isEmpty(endTime) ? null : endTime + "-01");
+        reportFeeMonthStatisticsDto.setStartTime(startTime);
+        reportFeeMonthStatisticsDto.setEndTime(endTime);
+        reportFeeMonthStatisticsDto.setObjName(objName);
         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 = "objId", required = false) String objId,
+                                                    @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);
+        reportFeeMonthStatisticsDto.setEndTime(endTime);
+        reportFeeMonthStatisticsDto.setObjId(objId);
+        return getReportFeeMonthStatisticsBMOImpl.queryPayFeeDetail(reportFeeMonthStatisticsDto);
+    }
+
+    /**
+     * 鎶奸噾鎶ヨ〃
+     *
+     * @param communityId 灏忓尯ID
+     * @return
+     * @serviceCode /reportFeeMonthStatistics/queryPayFeeDeposit
+     * @path /app/reportFeeMonthStatistics/queryPayFeeDeposit
+     */
+    @RequestMapping(value = "/queryPayFeeDeposit", method = RequestMethod.GET)
+    public ResponseEntity<String> queryPayFeeDeposit(@RequestParam(value = "communityId") String communityId,
+                                                     @RequestParam(value = "configId", required = false) String configId,
+                                                     @RequestParam(value = "feeId", required = false) String feeId,
+                                                     @RequestParam(value = "startTime", required = false) String startTime,
+                                                     @RequestParam(value = "endTime", required = false) String endTime,
+                                                     @RequestParam(value = "payerObjType", required = false) String payerObjType,
+                                                     @RequestParam(value = "state", required = false) String state,
+                                                     @RequestParam(value = "detailState", required = false) String detailState,
+                                                     @RequestParam(value = "floorId", required = false) String floorId,
+                                                     @RequestParam(value = "unitId", required = false) String unitId,
+                                                     @RequestParam(value = "roomNum", required = false) String roomNum,
+                                                     @RequestParam(value = "page") int page,
+                                                     @RequestParam(value = "row") int row) {
+        ReportDeposit reportDeposit = new ReportDeposit();
+        reportDeposit.setPage(page);
+        reportDeposit.setRow(row);
+        reportDeposit.setConfigId(configId);
+        reportDeposit.setFeeId(feeId);
+        reportDeposit.setFeeStartTime(startTime);
+        reportDeposit.setFeeEndTime(endTime);
+        reportDeposit.setPayerObjType(payerObjType);
+        reportDeposit.setState(state);
+        reportDeposit.setDetailState(detailState);
+        reportDeposit.setCommunityId(communityId);
+        reportDeposit.setFloorId(floorId);
+        reportDeposit.setUnitId(unitId);
+        reportDeposit.setRoomNum(roomNum);
+        return getReportFeeMonthStatisticsBMOImpl.queryPayFeeDeposit(reportDeposit);
+    }
+
+    /**
+     * 鎶ヤ慨缁熻琛�
+     *
+     * @param communityId 灏忓尯id
+     * @return
+     * @serviceCode /reportFeeMonthStatistics/queryRepair
+     * @path /app/reportFeeMonthStatistics/queryRepair
+     */
+    @RequestMapping(value = "/queryRepair", method = RequestMethod.GET)
+    public ResponseEntity<String> queryRepair(@RequestParam(value = "communityId") String communityId,
+                                              @RequestParam(value = "repairId", required = false) String repairId,
+                                              @RequestParam(value = "state", required = false) String state,
+                                              @RequestParam(value = "staffId", required = false) String staffId,
+                                              @RequestParam(value = "staffName", required = false) String staffName,
+                                              @RequestParam(value = "preStaffId", required = false) String preStaffId,
+                                              @RequestParam(value = "preStaffName", required = false) String preStaffName,
+                                              @RequestParam(value = "beginStartTime", required = false) String beginStartTime,
+                                              @RequestParam(value = "beginEndTime", required = false) String beginEndTime,
+                                              @RequestParam(value = "finishStartTime", required = false) String finishStartTime,
+                                              @RequestParam(value = "finishEndTime", required = false) String finishEndTime,
+                                              @RequestParam(value = "page") int page,
+                                              @RequestParam(value = "row") int row) {
+        RepairUserDto repairUserDto = new RepairUserDto();
+        repairUserDto.setCommunityId(communityId);
+        repairUserDto.setRepairId(repairId);
+        repairUserDto.setState(state);
+        repairUserDto.setStaffId(staffId);
+        repairUserDto.setStaffName(staffName);
+        repairUserDto.setPreStaffId(preStaffId);
+        repairUserDto.setPreStaffName(preStaffName);
+        if (!StringUtil.isEmpty(beginStartTime)) {
+            repairUserDto.setBeginStartTime(beginStartTime + " 00:00:00");
+        }
+        if (!StringUtil.isEmpty(beginEndTime)) {
+            repairUserDto.setBeginEndTime(beginEndTime + " 23:59:59");
+        }
+        if (!StringUtil.isEmpty(finishStartTime)) {
+            repairUserDto.setFinishStartTime(finishStartTime + " 00:00:00");
+        }
+        if (!StringUtil.isEmpty(finishEndTime)) {
+            repairUserDto.setFinishEndTime(finishEndTime + " 23:59:59");
+        }
+        repairUserDto.setPage(page);
+        repairUserDto.setRow(row);
+        return getReportFeeMonthStatisticsBMOImpl.queryRepair(repairUserDto);
+    }
+
+    /**
+     * 鏌ヨ璐圭敤鍒嗛」琛�
+     *
+     * @param communityId 灏忓尯ID
+     * @return
+     * @serviceCode /reportFeeMonthStatistics/queryDeadlineFee
+     * @path /app/reportFeeMonthStatistics/queryDeadlineFee
+     */
+    @RequestMapping(value = "/queryDeadlineFee", method = RequestMethod.GET)
+    public ResponseEntity<String> queryDeadlineFee(@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 = "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.setStartTime(DateUtil.getNow(DateUtil.DATE_FORMATE_STRING_A));
+        Calendar calendar = Calendar.getInstance();
+        calendar.add(Calendar.DAY_OF_MONTH, 7);
+        reportFeeMonthStatisticsDto.setEndTime(DateUtil.getFormatTimeString(calendar.getTime(), DateUtil.DATE_FORMATE_STRING_A));
+        return getReportFeeMonthStatisticsBMOImpl.queryDeadlineFee(reportFeeMonthStatisticsDto);
     }
 
 
@@ -300,6 +498,25 @@
         calendar.add(Calendar.DAY_OF_MONTH, 7);
         reportFeeMonthStatisticsDto.setEndTime(DateUtil.getFormatTimeString(calendar.getTime(), DateUtil.DATE_FORMATE_STRING_A));
         return getReportFeeMonthStatisticsBMOImpl.queryPrePaymentCount(reportFeeMonthStatisticsDto);
+    }
+
+    /**
+     * 鏌ヨ鍒版湡鎻愰啋
+     *
+     * @param communityId 灏忓尯ID
+     * @return
+     * @serviceCode /reportFeeMonthStatistics/queryDeadlineCount
+     * @path /app/reportFeeMonthStatistics/queryDeadlineCount
+     */
+    @RequestMapping(value = "/queryDeadlineCount", method = RequestMethod.GET)
+    public ResponseEntity<String> queryDeadlineCount(@RequestParam(value = "communityId") String communityId) {
+        ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto = new ReportFeeMonthStatisticsDto();
+        reportFeeMonthStatisticsDto.setCommunityId(communityId);
+        reportFeeMonthStatisticsDto.setStartTime(DateUtil.getNow(DateUtil.DATE_FORMATE_STRING_A));
+        Calendar calendar = Calendar.getInstance();
+        calendar.add(Calendar.DAY_OF_MONTH, 7);
+        reportFeeMonthStatisticsDto.setEndTime(DateUtil.getFormatTimeString(calendar.getTime(), DateUtil.DATE_FORMATE_STRING_A));
+        return getReportFeeMonthStatisticsBMOImpl.queryDeadlinePaymentCount(reportFeeMonthStatisticsDto);
     }
 
     /**
@@ -325,4 +542,166 @@
         return getReportFeeMonthStatisticsBMOImpl.queryPrePayment(reportFeeMonthStatisticsDto);
     }
 
+    /**
+     * 鏌ヨ璐圭敤鍒嗛」琛�
+     *
+     * @param communityId 灏忓尯ID
+     * @return
+     * @serviceCode /reportFeeMonthStatistics/queryOwePaymentCount
+     * @path /app/reportFeeMonthStatistics/queryOwePaymentCount
+     */
+    @RequestMapping(value = "/queryOwePaymentCount", method = RequestMethod.GET)
+    public ResponseEntity<String> queryOwePaymentCount(@RequestParam(value = "communityId") String communityId) {
+        ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto = new ReportFeeMonthStatisticsDto();
+        reportFeeMonthStatisticsDto.setCommunityId(communityId);
+        return getReportFeeMonthStatisticsBMOImpl.queryOwePaymentCount(reportFeeMonthStatisticsDto);
+    }
+
+    /**
+     * 鏌ヨ鏈敹璐规埧灞�
+     * select t.* from building_room t
+     * inner join building_unit bu on t.unit_id  = bu.unit_id and bu.status_cd = '0'
+     * inner join f_floor f on bu.floor_id = f.floor_id and f.status_cd = '0'
+     * where t.status_cd = '0'
+     * and not exists(
+     * 	select 1 from pay_fee pf where t.room_id = pf.payer_obj_id and pf.status_cd = '0' and pf.state = '2008001'
+     * )
+     *
+     * limit 10
+     */
+
+    /**
+     * 鏌ヨ璐圭敤鍒嗛」琛�
+     *
+     * @param communityId 灏忓尯ID
+     * @return
+     * @serviceCode /reportFeeMonthStatistics/queryNoFeeRooms
+     * @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) {
+        RoomDto roomDto = new RoomDto();
+        roomDto.setCommunityId(communityId);
+        roomDto.setPage(page);
+        roomDto.setRow(row);
+        return getReportFeeMonthStatisticsBMOImpl.queryNoFeeRooms(roomDto);
+    }
+
+
+    /**
+     * 鏌ヨ鍗庡畞鐗╀笟 娆犺垂缁熻鎶ヨ〃
+     * 浣滆�咃細 鍚村鏂�
+     * 鏃堕棿锛�2021-08-13
+     *
+     * @param communityId 灏忓尯ID
+     * @return
+     * @serviceCode /reportFeeMonthStatistics/queryHuaningOweFee
+     * @path /app/reportFeeMonthStatistics/queryHuaningOweFee
+     */
+    @RequestMapping(value = "/queryHuaningOweFee", method = RequestMethod.GET)
+    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