using CZFW.Framework.Interface; using CZFW.Framework.Model.ViewModel; using CZKJ.GBRS2.Entity; using System; using System.Collections.Generic; using System.Text; namespace CZKJ.GBRS2.Interface { public interface IUserRoleNavMapping { IList GetNavigationTreeByRoleId(int roleId); IList SetTree(IList list, string parentMark); ResultModel RemoveNavByRole(int RoleId,int navId); ResultModel AddNavByRole(int roleId, IList navIds); } }