| | |
| | | public AjaxResult listAll(ZfClean zfClean){ |
| | | Integer pageNum = Convert.toInt(ServletUtils.getParameter(PAGE_NUM), 1); |
| | | Integer pageSize = Convert.toInt(ServletUtils.getParameter(PAGE_SIZE), 10); |
| | | |
| | | return zfCleanService.selectDataList(zfClean, pageNum, pageSize); |
| | | } |
| | | |
| | |
| | | } |
| | | |
| | | |
| | | // /** |
| | | // * 导出保洁收纳记录列表 |
| | | // */ |
| | | //// @PreAuthorize("@ss.hasPermi('system:property:export')") |
| | | // @Log(title = "保洁收纳记录", businessType = BusinessType.EXPORT) |
| | | // @PostMapping("/export") |
| | | // public void export(HttpServletResponse response, ZfClean zfClean) |
| | | // { |
| | | // List<ZfClean> list = zfCleanService.selectByCondition(zfClean); |
| | | // log.info("导出记录为:{}",list); |
| | | // ExcelUtil<ZfClean> util = new ExcelUtil<>(ZfClean.class); |
| | | // util.exportExcel(response, list, "保洁收纳记录数据"); |
| | | // } |
| | | /** |
| | | * 导出保洁收纳记录列表 |
| | | */ |
| | | // @PreAuthorize("@ss.hasPermi('system:property:export')") |
| | | @Log(title = "保洁收纳记录", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export/{ids}") |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, ZfClean zfClean) |
| | | { |
| | | List<ZfClean> list = zfCleanService.selectByCondition(zfClean); |
| | | log.info("导出记录为:{}",list); |
| | | ExcelUtil<ZfClean> util = new ExcelUtil<>(ZfClean.class); |
| | | util.exportExcel(response, list, "保洁收纳记录数据"); |
| | | } |
| | | /** |
| | | * 导出保洁收纳记录列表 |
| | | */ |
| | | // @PreAuthorize("@ss.hasPermi('system:property:export')") |
| | | @Log(title = "保洁收纳记录", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export1/{ids}") |
| | | public void export(HttpServletResponse response, @PathVariable Long[] ids) |
| | | { |
| | | List<ZfClean> list = zfCleanService.selectByIds(ids); |