SysNoticeController.java 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. package com.ruoyi.web.controller.system;
  2. import java.util.List;
  3. import org.springframework.beans.factory.annotation.Autowired;
  4. import org.springframework.security.access.prepost.PreAuthorize;
  5. import org.springframework.validation.annotation.Validated;
  6. import org.springframework.web.bind.annotation.*;
  7. import com.ruoyi.common.annotation.Log;
  8. import com.ruoyi.common.core.controller.BaseController;
  9. import com.ruoyi.common.core.domain.AjaxResult;
  10. import com.ruoyi.common.core.page.TableDataInfo;
  11. import com.ruoyi.common.enums.BusinessType;
  12. import com.ruoyi.system.domain.SysNotice;
  13. import com.ruoyi.system.service.ISysNoticeService;
  14. /**
  15. * 公告 信息操作处理
  16. *
  17. * @author ruoyi
  18. */
  19. @RestController
  20. @RequestMapping("/system/notice")
  21. public class SysNoticeController extends BaseController
  22. {
  23. @Autowired
  24. private ISysNoticeService noticeService;
  25. /**
  26. * 获取通知公告列表
  27. */
  28. @PreAuthorize("@ss.hasPermi('system:notice:list')")
  29. @GetMapping("/list")
  30. public TableDataInfo list(SysNotice notice)
  31. {
  32. startPage();
  33. List<SysNotice> list = noticeService.selectNoticeList(notice);
  34. return getDataTable(list);
  35. }
  36. /**
  37. * 根据通知公告编号获取详细信息
  38. */
  39. @PreAuthorize("@ss.hasPermi('system:notice:query')")
  40. @GetMapping(value = "/{noticeId}")
  41. public AjaxResult getInfo(@PathVariable Long noticeId)
  42. {
  43. return AjaxResult.success(noticeService.selectNoticeById(noticeId));
  44. }
  45. /**
  46. * 新增通知公告
  47. */
  48. @PreAuthorize("@ss.hasPermi('system:notice:add')")
  49. @Log(title = "通知公告", businessType = BusinessType.INSERT)
  50. @PostMapping
  51. public AjaxResult add(@Validated @RequestBody SysNotice notice)
  52. {
  53. notice.setCreateBy(getUsername());
  54. return toAjax(noticeService.insertNotice(notice));
  55. }
  56. /**
  57. * 修改通知公告
  58. */
  59. @PreAuthorize("@ss.hasPermi('system:notice:edit')")
  60. @Log(title = "通知公告", businessType = BusinessType.UPDATE)
  61. @PutMapping
  62. public AjaxResult edit(@Validated @RequestBody SysNotice notice)
  63. {
  64. notice.setUpdateBy(getUsername());
  65. return toAjax(noticeService.updateNotice(notice));
  66. }
  67. /**
  68. * 删除通知公告
  69. */
  70. @PreAuthorize("@ss.hasPermi('system:notice:remove')")
  71. @Log(title = "通知公告", businessType = BusinessType.DELETE)
  72. @DeleteMapping("/{noticeIds}")
  73. public AjaxResult remove(@PathVariable Long[] noticeIds)
  74. {
  75. return toAjax(noticeService.deleteNoticeByIds(noticeIds));
  76. }
  77. /**
  78. * 获取最新公告信息
  79. */
  80. @PreAuthorize("@ss.hasPermi('system:notice:query')")
  81. @GetMapping("/newNotice")
  82. public AjaxResult getNewNotice(@RequestParam(value = "number", required = false) Long number)
  83. {
  84. if (number == null || number <= 0) {
  85. number = 1L;
  86. }
  87. List<SysNotice> sysNoticeList = noticeService.selectNewNotice(number);
  88. if (sysNoticeList.isEmpty()) {
  89. return error("暂无公告");
  90. }
  91. if (number == 1) {
  92. SysNotice sysNotice = sysNoticeList.get(0);
  93. return AjaxResult.success(sysNotice);
  94. }
  95. return AjaxResult.success(sysNoticeList);
  96. }
  97. /**
  98. * 获取最新通知信息
  99. */
  100. @PreAuthorize("@ss.hasPermi('system:notice:query')")
  101. @GetMapping("/newInform")
  102. public AjaxResult getNewInform(@RequestParam(value = "number", required = false) Long number)
  103. {
  104. if (number == null || number <= 0) {
  105. number = 1L;
  106. }
  107. List<SysNotice> sysNoticeList = noticeService.selectNewInform(number);
  108. if (sysNoticeList.isEmpty()) {
  109. return error("暂无通知");
  110. }
  111. if (number == 1) {
  112. SysNotice sysNotice = sysNoticeList.get(0);
  113. return AjaxResult.success(sysNotice);
  114. }
  115. return AjaxResult.success(sysNoticeList);
  116. }
  117. }