| | |
| | | package com.ruoyi.web.controller.project; |
| | | |
| | | import java.util.Arrays; |
| | | import java.util.Collections; |
| | | import java.util.Comparator; |
| | | import java.util.List; |
| | | |
| | | import com.ruoyi.common.core.domain.model.LoginUser; |
| | |
| | | * 导出系统消息列表 |
| | | */ |
| | | @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) { |
| | |
| | | * 新增系统消息 |
| | | */ |
| | | @ApiOperation("新增系统消息") |
| | | @PreAuthorize("@ss.hasPermi('project:systemmessage:add')") |
| | | // @PreAuthorize("@ss.hasPermi('project:systemmessage:add')") |
| | | @Log(title = "系统消息", businessType = BusinessType.INSERT) |
| | | @PostMapping("/add") |
| | | @RepeatSubmit |
| | |
| | | * 删除系统消息 |
| | | */ |
| | | @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) { |