From 92167f7a9909e0b25acc5bfb8e302bcbd41e875b Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期五, 07 三月 2025 00:31:57 +0800
Subject: [PATCH] 优化欠费工鞥你

---
 java110-interface/src/main/java/com/java110/intf/report/IReportCommunityInnerServiceSMO.java |   47 +++++++++++++++++++++++++++++++++++++++++++++--
 1 files changed, 45 insertions(+), 2 deletions(-)

diff --git a/java110-interface/src/main/java/com/java110/intf/report/IReportCommunityInnerServiceSMO.java b/java110-interface/src/main/java/com/java110/intf/report/IReportCommunityInnerServiceSMO.java
index a136c57..59df91d 100644
--- a/java110-interface/src/main/java/com/java110/intf/report/IReportCommunityInnerServiceSMO.java
+++ b/java110-interface/src/main/java/com/java110/intf/report/IReportCommunityInnerServiceSMO.java
@@ -1,10 +1,16 @@
 package com.java110.intf.report;
 
 import com.java110.config.feign.FeignConfiguration;
-import com.java110.dto.RoomDto;
+import com.java110.dto.fee.FeeConfigDto;
+import com.java110.dto.floor.FloorDto;
+import com.java110.dto.inspection.InspectionPlanDto;
+import com.java110.dto.parking.ParkingAreaDto;
+import com.java110.dto.repair.RepairSettingDto;
+import com.java110.dto.room.RoomDto;
 import com.java110.dto.fee.FeeDto;
 import com.java110.dto.owner.OwnerCarDto;
 import com.java110.dto.owner.OwnerDto;
+import com.java110.dto.unit.UnitDto;
 import org.springframework.cloud.openfeign.FeignClient;
 import org.springframework.web.bind.annotation.RequestBody;
 import org.springframework.web.bind.annotation.RequestMapping;
@@ -20,7 +26,7 @@
  * @Version 1.0
  * add by wuxw 2019/4/24
  **/
-@FeignClient(name = "${java110.report-service}", configuration = {FeignConfiguration.class})
+@FeignClient(name = "report-service", configuration = {FeignConfiguration.class})
 @RequestMapping("/reportCommunityApi")
 public interface IReportCommunityInnerServiceSMO {
 
@@ -78,4 +84,41 @@
 
     @RequestMapping(value = "/queryHisFees", method = RequestMethod.POST)
     List<FeeDto> queryHisFees(@RequestBody FeeDto feeDto);
+
+    /**
+     * 鏌ヨ璐圭敤椤规暟閲�
+     * @param feeDto
+     * @return
+     */
+    @RequestMapping(value = "/queryHisFeeConfigCount", method = RequestMethod.POST)
+    int queryHisFeeConfigCount(@RequestBody FeeConfigDto feeDto);
+
+    /**
+     * 鏌ヨ璐圭敤椤�
+     * @param feeDto
+     * @return
+     */
+    @RequestMapping(value = "/queryHisFeeConfigs", method = RequestMethod.POST)
+    List<FeeConfigDto> queryHisFeeConfigs(@RequestBody FeeConfigDto feeDto);
+
+    @RequestMapping(value = "/queryHisRoomCount", method = RequestMethod.POST)
+    int queryHisRoomCount(@RequestBody RoomDto roomDto);
+
+    @RequestMapping(value = "/queryHisRooms", method = RequestMethod.POST)
+    List<RoomDto> queryHisRooms(@RequestBody RoomDto roomDto);
+
+    @RequestMapping(value = "/queryCommunityUnitTree", method = RequestMethod.POST)
+    List<UnitDto> queryCommunityUnitTree(@RequestBody UnitDto unitDto);
+
+    @RequestMapping(value = "/queryCommunityParkingTree", method = RequestMethod.POST)
+    List<ParkingAreaDto> queryCommunityParkingTree(@RequestBody ParkingAreaDto parkingAreaDto);
+
+    @RequestMapping(value = "/queryCommunityRepairTree", method = RequestMethod.POST)
+    List<RepairSettingDto> queryCommunityRepairTree(@RequestBody RepairSettingDto repairSettingDto);
+
+    @RequestMapping(value = "/queryCommunityInspectionTree", method = RequestMethod.POST)
+    List<InspectionPlanDto> queryCommunityInspectionTree(@RequestBody InspectionPlanDto inspectionPlanDto);
+
+    @RequestMapping(value = "/queryCommunityFloorTree", method = RequestMethod.POST)
+    List<FloorDto> queryCommunityFloorTree(@RequestBody FloorDto floorDto);
 }

--
Gitblit v1.8.0