对比新文件 |
| | |
| | | 锘縰sing System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using WIDESEAWCS_Core; |
| | | using WIDESEAWCS_Core.BaseServices; |
| | | using WIDESEAWCS_Model.Models; |
| | | |
| | | namespace WIDESEAWCS_ISystemServices |
| | | { |
| | | public interface ISys_MenuService : IService<Sys_Menu> |
| | | { |
| | | object GetCurrentMenuActionList(); |
| | | object GetMenuActionList(int roleId); |
| | | |
| | | |
| | | List<Sys_Menu> GetUserMenuList(int roleId); |
| | | |
| | | List<Sys_Actions> GetActions(int menuId, List<Sys_Actions> menuActions, List<Permissions> permissions, int roleId); |
| | | |
| | | object GetMenu(); |
| | | |
| | | object GetTreeItem(int menuId); |
| | | |
| | | WebResponseContent Save(Sys_Menu menu); |
| | | |
| | | WebResponseContent DelMenu(int menuId); |
| | | } |
| | | } |