linwe
2023-12-01 5d5cd3ad979a0b85ab8c7034dcad1663fdcf71be
src/main/java/org/springblade/modules/house/controller/HouseRentalController.java
@@ -189,14 +189,12 @@
   }
   /**
    * 导出用户
    * 导出租赁信息
    */
   @GetMapping("export-house")
   @ApiOperationSupport(order = 13)
   @ApiOperation(value = "导出出租房屋", notes = "传入user")
   public void exportUser(HouseRentalVO houseRentalVO, HttpServletResponse response) {
   @GetMapping("export-houseRental")
   public void exportHouseRental(HouseRentalTenantVO houseRentalVO, HttpServletResponse response) {
      List<HouseRentalExcel> list = houseRentalService.export(houseRentalVO);
      ExcelUtil.export(response, "房屋数据" + DateUtil.time(), "房屋数据表", list, HouseRentalExcel.class);
      ExcelUtil.export(response, "出租屋数据" + DateUtil.time(), "出租屋数据表", list, HouseRentalExcel.class);
   }