From 17c81b57ec33fc692ed1499cda86bb01f1fe65a0 Mon Sep 17 00:00:00 2001 From: zhongrj <646384940@qq.com> Date: Fri, 17 Nov 2023 16:52:27 +0800 Subject: [PATCH] 房屋数据导出字典翻译修改 --- src/main/java/org/springblade/modules/house/service/IHouseRentalService.java | 18 +++++++++++++++--- 1 files changed, 15 insertions(+), 3 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 eef8008..d3a64f0 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; @@ -71,5 +70,18 @@ */ Boolean updateHouseRental(HouseRentalVO houseRental); - List<HouseRentalStatistics> getStatistics(); + /** + * 获取统计数据 + * @return + */ + Object getStatistics(HouseRentalTenantVO houseRental); + + /** + * 出租屋 确认 + * @param houseRental + * @return + */ + Boolean confirmHouseRental(HouseRentalVO houseRental); + + List<HouseRentalExcel> export(HouseRentalVO houseRentalVO); } -- Gitblit v1.9.3