From 8b7258c9427882bb1798f1502eaa35184c6e374e Mon Sep 17 00:00:00 2001
From: linwe <872216996@qq.com>
Date: Fri, 09 Aug 2024 14:29:18 +0800
Subject: [PATCH] 短信指定楼栋发送

---
 src/main/java/org/springblade/modules/house/mapper/HouseRentalMapper.java |   24 +++++++++++++++++++-----
 1 files changed, 19 insertions(+), 5 deletions(-)

diff --git a/src/main/java/org/springblade/modules/house/mapper/HouseRentalMapper.java b/src/main/java/org/springblade/modules/house/mapper/HouseRentalMapper.java
index d0d9ea4..ab95969 100644
--- a/src/main/java/org/springblade/modules/house/mapper/HouseRentalMapper.java
+++ b/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;
 
@@ -45,7 +44,9 @@
 	 */
 	List<HouseRentalTenantVO> selectHouseRentalPage(IPage page,
 													@Param("vo") HouseRentalTenantVO houseRental,
-													@Param("list") List<String> list);
+													@Param("gridCodeList") List<String> gridCodeList,
+													@Param("regionChildCodesList") List<String> regionChildCodesList,
+													@Param("isAdministrator") Integer isAdministrator);
 
 	/**
 	 * 查询房屋出租情况
@@ -59,7 +60,20 @@
 	 * @return
 	 */
 	List<HouseRentalStatistics> getStatistics(@Param("vo") HouseRentalTenantVO houseRental,
-											  @Param("list") List<String> list);
+											  @Param("gridCodeList") List<String> gridCodeList,
+											  @Param("regionChildCodesList") List<String> regionChildCodesList,
+											  @Param("isAdministrator") Integer isAdministrator);
 
-    List<HouseRentalExcel> export(HouseRentalVO houseRentalVO);
+	/**
+	 * 导出租赁信息
+	 * @param houseRental
+	 * @return
+	 */
+	List<HouseRentalExcel> export(@Param("vo") HouseRentalTenantVO houseRental);
+
+	Integer getStatisticsCount(@Param("vo") HouseRentalTenantVO houseRental,
+							   @Param("regionChildCodesList") List<String> regionChildCodesList,
+							   @Param("gridCodeList") List<String> gridCodeList,
+							   @Param("isAdministrator") Integer isAdministrator);
+
 }

--
Gitblit v1.9.3