wuxw
2024-03-15 35f4412614a4801dc26f9284c8c15457e1db2a7f
service-report/src/main/java/com/java110/report/bmo/reportFeeMonthStatistics/IGetReportFeeMonthStatisticsBMO.java
@@ -1,8 +1,12 @@
package com.java110.report.bmo.reportFeeMonthStatistics;
import com.java110.dto.room.RoomDto;
import com.java110.dto.repair.RepairUserDto;
import com.java110.dto.reportFeeMonthStatistics.ReportFeeMonthStatisticsDto;
import com.java110.dto.report.ReportDeposit;
import com.java110.dto.reportFee.ReportFeeMonthStatisticsDto;
import org.springframework.http.ResponseEntity;
import java.util.Map;
public interface IGetReportFeeMonthStatisticsBMO {
@@ -34,7 +38,7 @@
    ResponseEntity<String> queryOweFeeDetail(ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto);
    ResponseEntity<String> queryPayFeeDetail(ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto);
    ResponseEntity<String> queryDeadlineFee(ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto);
@@ -61,4 +65,35 @@
     */
    ResponseEntity<String> queryRepair(RepairUserDto repairUserDto);
    /**
     * 查询未收费房屋
     * @param roomDto
     * @return
     */
    ResponseEntity<String> queryNoFeeRooms(RoomDto roomDto);
    /**
     * 查询押金
     * @param reportDeposit
     * @return
     */
    ResponseEntity<String> queryPayFeeDeposit(ReportDeposit reportDeposit);
    /**
     * 查询华宁物业欠费 统计
     * @param reportFeeMonthStatisticsDto
     * @return
     */
    ResponseEntity<String> queryHuaningOweFee(ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto);
    /**
     * 查询华宁物业缴费 统计
     * @param paramInfo
     * @return
     */
    ResponseEntity<String> queryHuaningPayFee(Map paramInfo);
    ResponseEntity<String> queryHuaningPayFeeTwo(Map paramInfo);
    ResponseEntity<String> queryHuaningOweFeeDetail(Map paramInfo);
}