zhongrj
2023-11-09 bd5af6eff63613ef4d25751d8105d2d82e2997fa
src/main/java/org/springblade/modules/house/controller/HouseRentalController.java
@@ -158,9 +158,13 @@
      return R.status(houseRentalService.removeHouseRental(id));
   }
   /**
    * 获取统计数据
    * @return
    */
   @GetMapping("/getStatistics")
   public R getStatistics(){
      return R.data(houseRentalService.getStatistics());
   public R getStatistics(HouseRentalTenantVO houseRental){
      return R.data(houseRentalService.getStatistics(houseRental));
   }