zqy
2025-09-21 bd2df0a3e0634bb5469472f10315797365748559
ruoyi-admin/src/main/java/com/ruoyi/web/controller/archive/ArchiverecordstouserController.java
@@ -9,6 +9,7 @@
import com.ruoyi.common.utils.file.FileUploadUtils;
import com.ruoyi.common.utils.file.FileUtils;
import com.ruoyi.domain.Archiverecordstouser;
import com.ruoyi.domain.vo.RecordToUserCount;
import com.ruoyi.service.IArchiverecordstouserService;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.beans.factory.annotation.Autowired;
@@ -33,7 +34,7 @@
import static com.ruoyi.common.core.page.TableSupport.PAGE_SIZE;
/**
 * 【请填写功能名称】Controller
 * 【档案分配】Controller
 * 
 * @author ruoyi
 * @date 2025-07-20
@@ -65,7 +66,7 @@
        return toAjax(200);
    }
    /**
     * 查询【请填写功能名称】列表
     * 查询【档案分配】列表
     */
    @PreAuthorize("@ss.hasPermi('system:archiverecordstouser:list')")
    @GetMapping("/list")
@@ -77,21 +78,41 @@
    }
    @PreAuthorize("@ss.hasPermi('system:archiverecordstouser:list')")
    @GetMapping("/listArToUser")
    public AjaxResult listAllUserRecord(String userName )
    {
        Integer pageNum = Convert.toInt(ServletUtils.getParameter(PAGE_NUM), 1);
        Integer pageSize = Convert.toInt(ServletUtils.getParameter(PAGE_SIZE), 10);
        System.out.println(userName);
        return  archiverecordstouserService.countStatistic(userName,pageNum, pageSize);
    }
    @PreAuthorize("@ss.hasPermi('system:archiverecordstouser:list')")
    @PostMapping("/exportArToUser")
    public void exportArToUser(HttpServletResponse response)
    {
       // archiverecordstouserService.countStatistic()
        List<RecordToUserCount> list = archiverecordstouserService.findAllRecordToUserCont();
        ExcelUtil<RecordToUserCount> util = new ExcelUtil<RecordToUserCount>(RecordToUserCount.class);
        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}")
@@ -101,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)
    {
@@ -112,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)
    {
@@ -123,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)
    {