| | |
| | | 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; |
| | |
| | | |
| | | 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 |
| | |
| | | @Autowired |
| | | private IArchiverecordstouserService archiverecordstouserService; |
| | | |
| | | |
| | | @PreAuthorize("@ss.hasPermi('system:archiverecordstouser:edit')") |
| | | |
| | | @PutMapping("/authUserToArchive") |
| | | public AjaxResult selectRecordToUser(String recordId, Long[] userIds) |
| | | { |
| | | for(Long userId:userIds) |
| | | { |
| | | if(archiverecordstouserService.queryArchiverecordstouserByRecordId(recordId, userId)==1) |
| | | { |
| | | 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") |
| | | public TableDataInfo list(Archiverecordstouser archiverecordstouser) |
| | | public AjaxResult list(Archiverecordstouser archiverecordstouser) |
| | | { |
| | | startPage(); |
| | | List<Archiverecordstouser> list = archiverecordstouserService.selectArchiverecordstouserList(archiverecordstouser); |
| | | return getDataTable(list); |
| | | Integer pageNum = Convert.toInt(ServletUtils.getParameter(PAGE_NUM), 1); |
| | | Integer pageSize = Convert.toInt(ServletUtils.getParameter(PAGE_SIZE), 10); |
| | | return archiverecordstouserService.selectDataList(archiverecordstouser, pageNum, pageSize); |
| | | |
| | | } |
| | | |
| | | |
| | | @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}") |
| | |
| | | } |
| | | |
| | | /** |
| | | * 新增【请填写功能名称】 |
| | | * 新增【档案分配】 |
| | | */ |
| | | @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) |
| | | { |
| | | return toAjax(archiverecordstouserService.deleteArchiverecordstouserByIds(ids)); |
| | | } |
| | | /** |
| | | * 根据用户id和recordId进行删除 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:archiverecordstouser:remove')") |
| | | @DeleteMapping("/deleteByRidUid") |
| | | public AjaxResult removeByRecordIdAndUserId(String recordId, Long userId) |
| | | { |
| | | return toAjax(archiverecordstouserService.deleteArchiverecordstouserByRecordId(recordId, userId)); |
| | | } |
| | | |
| | | |
| | | @PreAuthorize("@ss.hasPermi('system:archiverecordstouser:query')") |
| | | @GetMapping("/getByRidUid") |
| | | public AjaxResult getByRecordIdAndUserId(String recordId, Long userId) |
| | | { |
| | | return toAjax(archiverecordstouserService.queryArchiverecordstouserByRecordId(recordId, userId)); |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | } |