zqy
2025-09-21 bd2df0a3e0634bb5469472f10315797365748559
ruoyi-admin/src/main/java/com/ruoyi/web/controller/archive/ArchiverecordstouserController.java
@@ -3,9 +3,13 @@
import java.util.List;
import javax.servlet.http.HttpServletResponse;
import com.ruoyi.common.config.RuoYiConfig;
import com.ruoyi.common.core.text.Convert;
import com.ruoyi.common.utils.ServletUtils;
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;
@@ -24,12 +28,13 @@
import com.ruoyi.common.utils.poi.ExcelUtil;
import com.ruoyi.common.core.page.TableDataInfo;
import org.springframework.web.multipart.MultipartFile;
import static com.ruoyi.common.core.page.TableSupport.PAGE_NUM;
import static com.ruoyi.common.core.page.TableSupport.PAGE_SIZE;
/**
 * 【请填写功能名称】Controller
 * 【档案分配】Controller
 * 
 * @author ruoyi
 * @date 2025-07-20
@@ -54,11 +59,14 @@
                return toAjax(0);
            }
        }
        //判断是否授权给别人了
        if(archiverecordstouserService.selectArchiveRecordUsers(recordId))
            return toAjax(0);
        archiverecordstouserService.insertRecordToUsers(recordId, userIds);
        return toAjax(200);
    }
    /**
     * 查询【请填写功能名称】列表
     * 查询【档案分配】列表
     */
    @PreAuthorize("@ss.hasPermi('system:archiverecordstouser:list')")
    @GetMapping("/list")
@@ -70,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}")
@@ -94,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)
    {
@@ -105,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)
    {
@@ -116,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)
    {
@@ -142,4 +170,11 @@
    {
        return toAjax(archiverecordstouserService.queryArchiverecordstouserByRecordId(recordId, userId));
    }
}