NotificationInfoController.cs 986 B

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.Mvc;
  6. using Abp.Web.Mvc.Authorization;
  7. using IwbZero.Auditing;
  8. using ShwasherSys.Authorization.Permissions;
  9. using ShwasherSys.BaseSysInfo.States;
  10. namespace ShwasherSys.Controllers
  11. {
  12. [AbpMvcAuthorize, AuditLog("消息管理")]
  13. public class NotificationInfoController : ShwasherControllerBase
  14. {
  15. public NotificationInfoController(IStatesAppService statesAppService)
  16. {
  17. StatesAppService = statesAppService;
  18. }
  19. [AbpMvcAuthorize(PermissionNames.PagesNotificationInfoBulletinInfos),AuditLog("系统通告管理")]
  20. // GET: NotificationInfo
  21. public ActionResult BulletinInfos()
  22. {
  23. ViewBag.BulletinType = StatesAppService.GetSelectLists("BulletinInfo", "BulletinType");
  24. return View();
  25. }
  26. public ActionResult ShortMsgMg()
  27. {
  28. return View();
  29. }
  30. }
  31. }