| 123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.Mvc;
- using Abp.Web.Mvc.Authorization;
- using IwbZero.Auditing;
- using ShwasherSys.Authorization.Permissions;
- using ShwasherSys.BaseSysInfo.States;
- namespace ShwasherSys.Controllers
- {
- [AbpMvcAuthorize, AuditLog("消息管理")]
- public class NotificationInfoController : ShwasherControllerBase
- {
- public NotificationInfoController(IStatesAppService statesAppService)
- {
- StatesAppService = statesAppService;
- }
- [AbpMvcAuthorize(PermissionNames.PagesNotificationInfoBulletinInfos),AuditLog("系统通告管理")]
- // GET: NotificationInfo
- public ActionResult BulletinInfos()
- {
- ViewBag.BulletinType = StatesAppService.GetSelectLists("BulletinInfo", "BulletinType");
- return View();
- }
- public ActionResult ShortMsgMg()
- {
- return View();
- }
- }
- }
|