java110
2021-08-19 6e8c95d31d85b53857e4e3ce12ea303eb0ea42eb
service-report/src/main/java/com/java110/report/bmo/reportFeeMonthStatistics/IGetReportFeeMonthStatisticsBMO.java
@@ -2,8 +2,11 @@
import com.java110.dto.RoomDto;
import com.java110.dto.repair.RepairUserDto;
import com.java110.dto.report.ReportDeposit;
import com.java110.dto.reportFeeMonthStatistics.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);
}