lin
2024-03-02 861e9b1eb145094dff6d1caf3dba30d7ce0e11d7
src/main/java/org/springblade/modules/house/service/impl/HouseRentalServiceImpl.java
@@ -67,6 +67,7 @@
   /**
    * 自定义分页查询
    *
    * @param page
    * @param houseRental
    * @return
@@ -105,6 +106,7 @@
   /**
    * 查询房屋出租情况
    *
    * @param code
    * @return
    */
@@ -117,6 +119,7 @@
   /**
    * 自定义房屋出租新增
    *
    * @param houseRentalVO
    * @return
    */
@@ -146,6 +149,7 @@
   /**
    * 保存租户信息
    *
    * @param houseRentalVO
    * @param flag
    * @return
@@ -188,6 +192,7 @@
   /**
    * 出租屋 自定义删除
    *
    * @param id
    * @return
    */
@@ -205,6 +210,7 @@
   /**
    * 出租屋 自定义修改
    *
    * @param houseRental
    * @return
    */
@@ -292,6 +298,7 @@
   /**
    * 获取统计数据
    *
    * @return
    */
   @Override
@@ -311,6 +318,7 @@
   /**
    * 出租屋 确认
    *
    * @param houseRental
    * @return
    */
@@ -324,6 +332,7 @@
   /**
    * 导出租赁信息
    *
    * @param houseRentalVO
    * @return
    */
@@ -335,6 +344,8 @@
   @Override
   public Integer getStatisticsCount(HouseRentalTenantVO houseRental) {
      return baseMapper.getStatisticsCount(houseRental.getUserId(), houseRental.getNeiCode());
      CommonParamSet<Object> commonParamSet = new CommonParamSet<>().invoke(HouseRentalTenantVO.class, houseRental);
      return baseMapper.getStatisticsCount(houseRental, commonParamSet.getGridCodeList(),
         commonParamSet.getRegionChildCodesList(), commonParamSet.getIsAdministrator());
   }
}