|
@@ -0,0 +1,141 @@
|
|
|
+package beilv.web.controller.system;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+import org.apache.shiro.authz.annotation.RequiresPermissions;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.stereotype.Controller;
|
|
|
+import org.springframework.ui.ModelMap;
|
|
|
+import org.springframework.validation.annotation.Validated;
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
+import beilv.common.annotation.Log;
|
|
|
+import beilv.common.core.controller.BaseController;
|
|
|
+import beilv.common.core.domain.AjaxResult;
|
|
|
+import beilv.common.core.page.TableDataInfo;
|
|
|
+import beilv.common.enums.BusinessType;
|
|
|
+import beilv.system.domain.SysNotice;
|
|
|
+import beilv.system.service.ISysNoticeService;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 公告 信息操作处理
|
|
|
+ *
|
|
|
+ * @author ruoyi
|
|
|
+ */
|
|
|
+@Controller
|
|
|
+@RequestMapping("/app-api/notice")
|
|
|
+public class SysNoticeController extends BaseController
|
|
|
+{
|
|
|
+ private String prefix = "/notice";
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private ISysNoticeService noticeService;
|
|
|
+
|
|
|
+ @RequiresPermissions("system:notice:view")
|
|
|
+ @GetMapping()
|
|
|
+ public String notice()
|
|
|
+ {
|
|
|
+ return prefix + "/notice";
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 查询公告列表
|
|
|
+ */
|
|
|
+ @RequiresPermissions("system:notice:list")
|
|
|
+ @PostMapping("/list")
|
|
|
+ @ResponseBody
|
|
|
+ public TableDataInfo list(SysNotice notice)
|
|
|
+ {
|
|
|
+ startPage();
|
|
|
+ List<SysNotice> list = noticeService.selectNoticeList(notice);
|
|
|
+ return getDataTable(list);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 新增公告
|
|
|
+ */
|
|
|
+ @RequiresPermissions("system:notice:add")
|
|
|
+ @GetMapping("/add")
|
|
|
+ public String add()
|
|
|
+ {
|
|
|
+ return prefix + "/add";
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 新增保存公告
|
|
|
+ */
|
|
|
+ @RequiresPermissions("system:notice:add")
|
|
|
+ @Log(title = "通知公告", businessType = BusinessType.INSERT)
|
|
|
+ @PostMapping("/add")
|
|
|
+ @ResponseBody
|
|
|
+ public AjaxResult addSave(@Validated SysNotice notice)
|
|
|
+ {
|
|
|
+ notice.setCreateBy(getLoginName());
|
|
|
+ return toAjax(noticeService.insertNotice(notice));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 修改公告
|
|
|
+ */
|
|
|
+ @RequiresPermissions("system:notice:edit")
|
|
|
+ @GetMapping("/edit/{noticeId}")
|
|
|
+ public String edit(@PathVariable("noticeId") Long noticeId, ModelMap mmap)
|
|
|
+ {
|
|
|
+ mmap.put("notice", noticeService.selectNoticeById(noticeId));
|
|
|
+ return prefix + "/edit";
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 修改保存公告
|
|
|
+ */
|
|
|
+ @RequiresPermissions("system:notice:edit")
|
|
|
+ @Log(title = "通知公告", businessType = BusinessType.UPDATE)
|
|
|
+ @PostMapping("/edit")
|
|
|
+ @ResponseBody
|
|
|
+ public AjaxResult editSave(@Validated SysNotice notice)
|
|
|
+ {
|
|
|
+ notice.setUpdateBy(getLoginName());
|
|
|
+ return toAjax(noticeService.updateNotice(notice));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 查询公告详细
|
|
|
+ */
|
|
|
+ @RequiresPermissions("system:notice:list")
|
|
|
+ @GetMapping("/view/{noticeId}")
|
|
|
+ public String view(@PathVariable("noticeId") Long noticeId, ModelMap mmap)
|
|
|
+ {
|
|
|
+ mmap.put("notice", noticeService.selectNoticeById(noticeId));
|
|
|
+ return prefix + "/view";
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * 小程序查询公告详细
|
|
|
+ */
|
|
|
+ @GetMapping(value = "/{noticeId}")
|
|
|
+ public AjaxResult getInfo(@PathVariable Long noticeId) {
|
|
|
+ return success(noticeService.selectNoticeById(noticeId));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 删除公告
|
|
|
+ */
|
|
|
+ @RequiresPermissions("system:notice:remove")
|
|
|
+ @Log(title = "通知公告", businessType = BusinessType.DELETE)
|
|
|
+ @PostMapping("/remove")
|
|
|
+ @ResponseBody
|
|
|
+ public AjaxResult remove(String ids)
|
|
|
+ {
|
|
|
+ return toAjax(noticeService.deleteNoticeByIds(ids));
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 小程序获取通知公告列表
|
|
|
+ */
|
|
|
+ @GetMapping("/appList")
|
|
|
+ public TableDataInfo appList(SysNotice notice)
|
|
|
+ {
|
|
|
+ startPage();
|
|
|
+ List<SysNotice> list = noticeService.selectNoticeListApp(notice);
|
|
|
+ return getDataTable(list);
|
|
|
+ }
|
|
|
+}
|