linwe
2023-12-23 55d677758efadb6d42e6d4e595cecc2c50c20d5a
src/main/java/org/springblade/modules/house/mapper/HouseRentalMapper.java
@@ -16,7 +16,6 @@
 */
package org.springblade.modules.house.mapper;
import liquibase.pro.packaged.P;
import org.apache.ibatis.annotations.Param;
import org.springblade.modules.house.entity.HouseRentalEntity;
import org.springblade.modules.house.vo.HouseRentalStatistics;
@@ -24,7 +23,7 @@
import org.springblade.modules.house.vo.HouseRentalVO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import org.springblade.modules.system.excel.HouseRentalExcel;
import org.springblade.modules.house.excel.HouseRentalExcel;
import java.util.List;
@@ -61,5 +60,12 @@
   List<HouseRentalStatistics> getStatistics(@Param("vo") HouseRentalTenantVO houseRental,
                                   @Param("list") List<String> list);
    List<HouseRentalExcel> export(HouseRentalVO houseRentalVO);
   /**
    * 导出租赁信息
    * @param houseRental
    * @return
    */
   List<HouseRentalExcel> export(@Param("vo") HouseRentalTenantVO houseRental);
   Integer getStatisticsCount(Long userId);
}