linwei
2024-01-08 68a9f0a33df16b5aa8c622b61fc5c6bc96e721d7
src/main/java/org/springblade/modules/house/mapper/HouseTenantMapper.java
@@ -16,6 +16,7 @@
 */
package org.springblade.modules.house.mapper;
import org.apache.ibatis.annotations.Param;
import org.springblade.modules.house.entity.HouseTenantEntity;
import org.springblade.modules.house.vo.HouseTenantVO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
@@ -39,5 +40,10 @@
    */
   List<HouseTenantVO> selectHouseTenantPage(IPage page, HouseTenantVO houseTenant);
   /**
    * 根据租房id删除租户信息
    * @param housingRentalId
    * @return
    */
    int removeByHousingRentalId(@Param("housingRentalId") Long housingRentalId);
}