java110
2023-06-29 b173d31976fc4731b7c247d4038de92134eba317
service-report/src/main/java/com/java110/report/bmo/reportFeeMonthStatistics/IGetReportFeeMonthStatisticsBMO.java
@@ -1,9 +1,12 @@
package com.java110.report.bmo.reportFeeMonthStatistics;
import com.java110.dto.RoomDto;
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 {
@@ -68,4 +71,29 @@
     * @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);
}