| | |
| | | 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; |
| | |
| | | import static com.ruoyi.common.core.page.TableSupport.PAGE_SIZE; |
| | | |
| | | /** |
| | | * 【请填写功能名称】Controller |
| | | * 【档案分配】Controller |
| | | * |
| | | * @author ruoyi |
| | | * @date 2025-07-20 |
| | |
| | | return toAjax(200); |
| | | } |
| | | /** |
| | | * 查询【请填写功能名称】列表 |
| | | * 查询【档案分配】列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:archiverecordstouser:list')") |
| | | @GetMapping("/list") |
| | |
| | | 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}") |
| | |
| | | } |
| | | |
| | | /** |
| | | * 新增【请填写功能名称】 |
| | | * 新增【档案分配】 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:archiverecordstouser:add')") |
| | | @Log(title = "【请填写功能名称】", businessType = BusinessType.INSERT) |
| | | @Log(title = "【档案分配】", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody Archiverecordstouser archiverecordstouser) |
| | | { |
| | |
| | | } |
| | | |
| | | /** |
| | | * 修改【请填写功能名称】 |
| | | * 修改【档案分配】 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:archiverecordstouser:edit')") |
| | | @Log(title = "【请填写功能名称】", businessType = BusinessType.UPDATE) |
| | | @Log(title = "【档案分配】", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody Archiverecordstouser archiverecordstouser) |
| | | { |
| | |
| | | } |
| | | |
| | | /** |
| | | * 删除【请填写功能名称】 |
| | | * 删除【档案分配】 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:archiverecordstouser:remove')") |
| | | @Log(title = "【请填写功能名称】", businessType = BusinessType.DELETE) |
| | | @Log(title = "【档案分配】", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{ids}") |
| | | public AjaxResult remove(@PathVariable Long[] ids) |
| | | { |