IRoleService.cs 340 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 namespace NCC.System.Interfaces.Permission { /// <summary> /// 业务契约:角色信息 /// </summary> public interface IRoleService { /// <summary> /// 名称 /// </summary> /// <param name="ids"></param> /// <returns></returns> string GetName(string ids); } }