You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
454 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using Txgy.EWS.Server.Models;
namespace Txgy.EWS.Server.IService
{
public interface IMenuService : IBaseService
{
List<MenuInfo> GetMenusByUserId(int roleId);
// 角色编辑的时候用到
List<MenuInfo> GetMenusByRoleId(int roleId);
List<MenuInfo> GetAllMenus();
// 包含新增和修改
void SaveMenu(string data);
}
}