linwe
2024-08-09 8b7258c9427882bb1798f1502eaa35184c6e374e
src/main/java/org/springblade/modules/house/mapper/HouseTenantMapper.java
@@ -16,7 +16,10 @@
 */
package org.springblade.modules.house.mapper;
import org.apache.ibatis.annotations.Param;
import org.springblade.modules.house.entity.HouseTenantEntity;
import org.springblade.modules.house.excel.ExportHouseTenantExcel;
import org.springblade.modules.house.excel.HouseTenantExcel;
import org.springblade.modules.house.vo.HouseTenantVO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
@@ -39,5 +42,16 @@
    */
   List<HouseTenantVO> selectHouseTenantPage(IPage page, HouseTenantVO houseTenant);
   /**
    * 根据租房id删除租户信息
    * @param housingRentalId
    * @return
    */
    int removeByHousingRentalId(@Param("housingRentalId") Long housingRentalId);
   /**
    * 导出租客
    * @return
    */
    List<ExportHouseTenantExcel> export();
}