| | |
| | | import static com.ruoyi.common.core.page.TableSupport.PAGE_SIZE; |
| | | |
| | | /** |
| | | * 【请填写功能名称】Controller |
| | | * 【签名的接口】Controller |
| | | * |
| | | * @author ruoyi |
| | | * @date 2026-01-19 |
| | |
| | | private IArchiveSignatureService archiveSignatureService; |
| | | |
| | | /** |
| | | * 查询【请填写功能名称】列表 |
| | | * 查询签名列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:signature:list')") |
| | | @GetMapping("/list") |
| | |
| | | } |
| | | |
| | | /** |
| | | * 导出【请填写功能名称】列表 |
| | | * 导出签名列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:signature:export')") |
| | | @Log(title = "【请填写功能名称】", businessType = BusinessType.EXPORT) |
| | |
| | | } |
| | | |
| | | /** |
| | | * 获取【请填写功能名称】详细信息 |
| | | * 获取签名详细信息 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:signature:query')") |
| | | @GetMapping(value = "/{id}") |
| | |
| | | } |
| | | |
| | | /** |
| | | * 新增【请填写功能名称】 |
| | | * 新增签名 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:signature:add')") |
| | | @Log(title = "【请填写功能名称】", businessType = BusinessType.INSERT) |
| | |
| | | } |
| | | |
| | | /** |
| | | * 修改【请填写功能名称】 |
| | | * 修改签名 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:signature:edit')") |
| | | @Log(title = "【请填写功能名称】", businessType = BusinessType.UPDATE) |
| | |
| | | } |
| | | |
| | | /** |
| | | * 删除【请填写功能名称】 |
| | | * 删除签名 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:signature:remove')") |
| | | @Log(title = "【请填写功能名称】", businessType = BusinessType.DELETE) |