|
|
@@ -1,12 +1,5 @@
|
|
|
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;
|
|
|
@@ -14,16 +7,23 @@ import beilv.common.core.page.TableDataInfo;
|
|
|
import beilv.common.enums.BusinessType;
|
|
|
import beilv.system.domain.SysNotice;
|
|
|
import beilv.system.service.ISysNoticeService;
|
|
|
+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 java.util.List;
|
|
|
|
|
|
/**
|
|
|
* 公告 信息操作处理
|
|
|
- *
|
|
|
+ *
|
|
|
* @author ruoyi
|
|
|
*/
|
|
|
@Controller
|
|
|
@RequestMapping("/system/notice")
|
|
|
-public class SysNoticeController extends BaseController
|
|
|
-{
|
|
|
+public class SysNoticeController extends BaseController {
|
|
|
private String prefix = "system/notice";
|
|
|
|
|
|
@Autowired
|
|
|
@@ -31,8 +31,7 @@ public class SysNoticeController extends BaseController
|
|
|
|
|
|
@RequiresPermissions("system:notice:view")
|
|
|
@GetMapping()
|
|
|
- public String notice()
|
|
|
- {
|
|
|
+ public String notice() {
|
|
|
return prefix + "/notice";
|
|
|
}
|
|
|
|
|
|
@@ -42,8 +41,7 @@ public class SysNoticeController extends BaseController
|
|
|
@RequiresPermissions("system:notice:list")
|
|
|
@PostMapping("/list")
|
|
|
@ResponseBody
|
|
|
- public TableDataInfo list(SysNotice notice)
|
|
|
- {
|
|
|
+ public TableDataInfo list(SysNotice notice) {
|
|
|
startPage();
|
|
|
List<SysNotice> list = noticeService.selectNoticeList(notice);
|
|
|
return getDataTable(list);
|
|
|
@@ -54,8 +52,7 @@ public class SysNoticeController extends BaseController
|
|
|
*/
|
|
|
@RequiresPermissions("system:notice:add")
|
|
|
@GetMapping("/add")
|
|
|
- public String add()
|
|
|
- {
|
|
|
+ public String add() {
|
|
|
return prefix + "/add";
|
|
|
}
|
|
|
|
|
|
@@ -66,8 +63,7 @@ public class SysNoticeController extends BaseController
|
|
|
@Log(title = "通知公告", businessType = BusinessType.INSERT)
|
|
|
@PostMapping("/add")
|
|
|
@ResponseBody
|
|
|
- public AjaxResult addSave(@Validated SysNotice notice)
|
|
|
- {
|
|
|
+ public AjaxResult addSave(@Validated SysNotice notice) {
|
|
|
notice.setCreateBy(getLoginName());
|
|
|
return toAjax(noticeService.insertNotice(notice));
|
|
|
}
|
|
|
@@ -77,9 +73,10 @@ public class SysNoticeController extends BaseController
|
|
|
*/
|
|
|
@RequiresPermissions("system:notice:edit")
|
|
|
@GetMapping("/edit/{noticeId}")
|
|
|
- public String edit(@PathVariable("noticeId") Long noticeId, ModelMap mmap)
|
|
|
- {
|
|
|
- mmap.put("notice", noticeService.selectNoticeById(noticeId));
|
|
|
+ public String edit(@PathVariable("noticeId") Long noticeId, ModelMap mmap) {
|
|
|
+ SysNotice sysNotice = noticeService.selectNoticeById(noticeId);
|
|
|
+ sysNotice.setFile(sysNotice.getNoticeImg());
|
|
|
+ mmap.put("notice", sysNotice);
|
|
|
return prefix + "/edit";
|
|
|
}
|
|
|
|
|
|
@@ -90,8 +87,7 @@ public class SysNoticeController extends BaseController
|
|
|
@Log(title = "通知公告", businessType = BusinessType.UPDATE)
|
|
|
@PostMapping("/edit")
|
|
|
@ResponseBody
|
|
|
- public AjaxResult editSave(@Validated SysNotice notice)
|
|
|
- {
|
|
|
+ public AjaxResult editSave(@Validated SysNotice notice) {
|
|
|
notice.setUpdateBy(getLoginName());
|
|
|
return toAjax(noticeService.updateNotice(notice));
|
|
|
}
|
|
|
@@ -101,8 +97,7 @@ public class SysNoticeController extends BaseController
|
|
|
*/
|
|
|
@RequiresPermissions("system:notice:list")
|
|
|
@GetMapping("/view/{noticeId}")
|
|
|
- public String view(@PathVariable("noticeId") Long noticeId, ModelMap mmap)
|
|
|
- {
|
|
|
+ public String view(@PathVariable("noticeId") Long noticeId, ModelMap mmap) {
|
|
|
mmap.put("notice", noticeService.selectNoticeById(noticeId));
|
|
|
return prefix + "/view";
|
|
|
}
|
|
|
@@ -114,8 +109,7 @@ public class SysNoticeController extends BaseController
|
|
|
@Log(title = "通知公告", businessType = BusinessType.DELETE)
|
|
|
@PostMapping("/remove")
|
|
|
@ResponseBody
|
|
|
- public AjaxResult remove(String ids)
|
|
|
- {
|
|
|
+ public AjaxResult remove(String ids) {
|
|
|
return toAjax(noticeService.deleteNoticeByIds(ids));
|
|
|
}
|
|
|
|