linwe
2023-11-16 4ffde981d9f5a643888e85b9fde6515a9e29b020
src/main/java/org/springblade/modules/house/service/impl/HouseRentalServiceImpl.java
@@ -29,6 +29,8 @@
import org.springblade.modules.house.mapper.HouseRentalMapper;
import org.springblade.modules.house.service.IHouseRentalService;
import org.springblade.modules.house.vo.HouseTenantVO;
import org.springblade.modules.system.excel.HouseExcel;
import org.springblade.modules.system.excel.HouseRentalExcel;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.baomidou.mybatisplus.core.metadata.IPage;
@@ -237,4 +239,10 @@
      // 修改
      return updateById(houseRental);
   }
   @Override
   public List<HouseRentalExcel> export(HouseRentalVO houseRentalVO) {
      List<HouseRentalExcel> houseRentalExcels = baseMapper.export(houseRentalVO);
      return houseRentalExcels;
   }
}