wuxw
2022-07-19 05683f2b2bdbdbe21cf17ad523c21ab338bd1c54
service-report/src/main/java/com/java110/report/dao/IReportCommunityServiceDao.java
@@ -1,10 +1,10 @@
package com.java110.report.dao;
import com.java110.dto.community.CommunityDto;
import com.java110.dto.report.ReportCarDto;
import com.java110.dto.report.ReportRoomDto;
import java.util.List;
import java.util.Map;
/**
 * @ClassName ICommunityServiceDao
@@ -52,5 +52,31 @@
     *
     * @return
     */
    List<CommunityDto> getCommunitys(CommunityDto communityDto);
    List<Map> getCommunitys(Map communityDto);
    /**
     * 查询房屋结构化数据
     *
     * @param info
     * @return
     */
    List<Map> queryRoomStructures(Map info);
    /**
     * 查询车位 结构化数据
     *
     * @param info
     * @return
     */
    List<Map> queryCarStructures(Map info);
    int deleteInvalidFee(Map info);
    /**
     * 查询无效的数据
     * @param reportFeeDto
     * @return
     */
    List<Map> queryInvalidFeeMonthStatistics(Map reportFeeDto);
}