From 13d838aea1c7983e8dfdcbe0047d2aaad1738cf7 Mon Sep 17 00:00:00 2001 From: linwe <872216996@qq.com> Date: Mon, 18 Dec 2023 17:23:42 +0800 Subject: [PATCH] 公益报名+议事添加签名地址+菜单过滤 --- src/main/java/org/springblade/modules/house/service/IHouseRentalService.java | 19 +++++++++++++++++-- 1 files changed, 17 insertions(+), 2 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 52006b9..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,11 +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.house.excel.HouseRentalExcel; import java.util.List; @@ -76,4 +75,20 @@ * @return */ Object getStatistics(HouseRentalTenantVO houseRental); + + /** + * 出租屋 确认 + * @param houseRental + * @return + */ + Boolean confirmHouseRental(HouseRentalVO houseRental); + + /** + * 导出租赁信息 + * @param houseRentalVO + * @return + */ + List<HouseRentalExcel> export(HouseRentalTenantVO houseRentalVO); + + Integer getStatisticsCount(HouseRentalTenantVO houseRental); } -- Gitblit v1.9.3