liusheng
2024-05-22 9b44e841586ce281e4e3e9d7296d74b29939418b
ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceSystemmessageController.java
@@ -73,7 +73,7 @@
     * 导出系统消息列表
     */
    @ApiOperation("导出系统消息列表")
    @PreAuthorize("@ss.hasPermi('project:systemmessage:export')")
    // @PreAuthorize("@ss.hasPermi('project:systemmessage:export')")
    @Log(title = "系统消息", businessType = BusinessType.EXPORT)
    @GetMapping("/export")
    public AjaxResult export(ServiceSystemmessage serviceSystemmessage) {
@@ -95,7 +95,7 @@
     * 新增系统消息
     */
    @ApiOperation("新增系统消息")
    @PreAuthorize("@ss.hasPermi('project:systemmessage:add')")
    // @PreAuthorize("@ss.hasPermi('project:systemmessage:add')")
    @Log(title = "系统消息", businessType = BusinessType.INSERT)
    @PostMapping("/add")
    @RepeatSubmit
@@ -119,7 +119,7 @@
     * 删除系统消息
     */
    @ApiOperation("删除系统消息")
    @PreAuthorize("@ss.hasPermi('project:systemmessage:remove')")
    // @PreAuthorize("@ss.hasPermi('project:systemmessage:remove')")
    @Log(title = "系统消息", businessType = BusinessType.DELETE)
    @GetMapping("/remove/{ids}")
    public AjaxResult remove(@PathVariable Long[] ids) {