fei
2025-09-29 ebeecf61232967a9c21ca4aa63ccec8e269b8c0e
ruoyi-admin/src/main/java/com/ruoyi/web/controller/archive/ArchiverecordstouserController.java
@@ -34,7 +34,7 @@
import static com.ruoyi.common.core.page.TableSupport.PAGE_SIZE;
/**
 * 【请填写功能名称】Controller
 * 【档案分配】Controller
 * 
 * @author ruoyi
 * @date 2025-07-20
@@ -66,7 +66,7 @@
        return toAjax(200);
    }
    /**
     * 查询【请填写功能名称】列表
     * 查询【档案分配】列表
     */
    @PreAuthorize("@ss.hasPermi('system:archiverecordstouser:list')")
    @GetMapping("/list")
@@ -99,20 +99,20 @@
        util.exportExcel(response, list, "导出统计信息");
    }
    /**
     * 导出【请填写功能名称】列表
     * 导出【档案分配】列表
     */
    @PreAuthorize("@ss.hasPermi('system:archiverecordstouser:export')")
    @Log(title = "【请填写功能名称】", businessType = BusinessType.EXPORT)
    @Log(title = "【档案分配】", businessType = BusinessType.EXPORT)
    @PostMapping("/export")
    public void export(HttpServletResponse response, Archiverecordstouser archiverecordstouser)
    {
        List<Archiverecordstouser> list = archiverecordstouserService.selectArchiverecordstouserList(archiverecordstouser);
        ExcelUtil<Archiverecordstouser> util = new ExcelUtil<Archiverecordstouser>(Archiverecordstouser.class);
        util.exportExcel(response, list, "【请填写功能名称】数据");
        util.exportExcel(response, list, "【档案分配】数据");
    }
    /**
     * 获取【请填写功能名称】详细信息
     * 获取【档案分配】详细信息
     */
    @PreAuthorize("@ss.hasPermi('system:archiverecordstouser:query')")
    @GetMapping(value = "/{id}")
@@ -122,10 +122,10 @@
    }
    /**
     * 新增【请填写功能名称】
     * 新增【档案分配】
     */
    @PreAuthorize("@ss.hasPermi('system:archiverecordstouser:add')")
    @Log(title = "【请填写功能名称】", businessType = BusinessType.INSERT)
    @Log(title = "【档案分配】", businessType = BusinessType.INSERT)
    @PostMapping
    public AjaxResult add(@RequestBody Archiverecordstouser archiverecordstouser)
    {
@@ -133,10 +133,10 @@
    }
    /**
     * 修改【请填写功能名称】
     * 修改【档案分配】
     */
    @PreAuthorize("@ss.hasPermi('system:archiverecordstouser:edit')")
    @Log(title = "【请填写功能名称】", businessType = BusinessType.UPDATE)
    @Log(title = "【档案分配】", businessType = BusinessType.UPDATE)
    @PutMapping
    public AjaxResult edit(@RequestBody Archiverecordstouser archiverecordstouser)
    {
@@ -144,10 +144,10 @@
    }
    /**
     * 删除【请填写功能名称】
     * 删除【档案分配】
     */
    @PreAuthorize("@ss.hasPermi('system:archiverecordstouser:remove')")
    @Log(title = "【请填写功能名称】", businessType = BusinessType.DELETE)
    @Log(title = "【档案分配】", businessType = BusinessType.DELETE)
   @DeleteMapping("/{ids}")
    public AjaxResult remove(@PathVariable Long[] ids)
    {