zqy
5 天以前 b02beccf4567068cb47a3f1181a00039456c872d
ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfCleanController.java
@@ -44,17 +44,18 @@
    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);
    }
    /**
     * 获取导入模板
     */
    @GetMapping("/model")
    @PostMapping("/model")
    public void getExportModel(HttpServletResponse response){
        List<ZfCleanExcelBean> list = Collections.singletonList(new ZfCleanExcelBean());
        ExcelUtil<ZfCleanExcelBean> util = new ExcelUtil<>(ZfCleanExcelBean.class);
        util.exportExcel(response,list,"保洁收纳记录数据");
        util.exportExcel(response,list,"保洁收纳导入模板");
    }
@@ -67,6 +68,19 @@
    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);
        log.info("导出记录为:{}",list);
        ExcelUtil<ZfClean> util = new ExcelUtil<>(ZfClean.class);
        util.exportExcel(response, list, "保洁收纳记录数据");
@@ -101,7 +115,7 @@
    @PostMapping
    public AjaxResult add(@RequestBody ZfClean zfClean)
    {
        return zfCleanService.addData2(zfClean);
        return zfCleanService.addData(zfClean);
    }
    /**
@@ -112,7 +126,7 @@
    @PutMapping
    public AjaxResult edit(@RequestBody ZfClean zfClean)
    {
        return toAjax(zfCleanService.updateById(zfClean));
        return zfCleanService.updateData(zfClean);
    }
//
    /**
@@ -123,7 +137,7 @@
    @DeleteMapping("/{ids}")
    public AjaxResult remove(@PathVariable Long[] ids)
    {
        return toAjax(zfCleanService.removeByIds(Arrays.asList(ids)));
        return zfCleanService.deleteData(ids);
    }
}