From c10d6358b9f014375a13821465bc978d0c0da22e Mon Sep 17 00:00:00 2001 From: linwe <872216996@qq.com> Date: Wed, 29 May 2024 17:17:08 +0800 Subject: [PATCH] 通过E呼即办数据统计 --- src/main/java/org/springblade/modules/house/service/IHouseRentalService.java | 13 +++++++++---- 1 files changed, 9 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/springblade/modules/house/service/IHouseRentalService.java b/src/main/java/org/springblade/modules/house/service/IHouseRentalService.java index f3313c7..ab06eb4 100644 --- a/src/main/java/org/springblade/modules/house/service/IHouseRentalService.java +++ b/src/main/java/org/springblade/modules/house/service/IHouseRentalService.java @@ -18,12 +18,10 @@ import com.baomidou.mybatisplus.extension.service.IService; import org.springblade.modules.house.entity.HouseRentalEntity; -import org.springblade.modules.house.vo.HouseRentalStatistics; import org.springblade.modules.house.vo.HouseRentalTenantVO; import org.springblade.modules.house.vo.HouseRentalVO; -import org.springblade.core.mp.base.BaseService; 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; @@ -85,5 +83,12 @@ */ Boolean confirmHouseRental(HouseRentalVO houseRental); - List<HouseRentalExcel> export(HouseRentalVO houseRentalVO); + /** + * 导出租赁信息 + * @param houseRentalVO + * @return + */ + List<HouseRentalExcel> export(HouseRentalTenantVO houseRentalVO); + + Integer getStatisticsCount(HouseRentalTenantVO houseRental); } -- Gitblit v1.9.3