using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using FineAdmin.Model; namespace FineAdmin.IService { public interface IModuleService : IBaseService { /// /// 获得菜单列表 /// /// /// dynamic GetModuleList(int roleId); /// /// Module treeSelect数据列表 /// IEnumerable GetModuleTreeSelect(); /// /// 获取所有菜单列表及可用按钮权限列表 /// /// 角色ID /// IEnumerable GetModuleButtonList(int roleId); } }