Blame view

netcore/src/Modularity/System/NCC.System.Interfaces/Permission/IRoleService.cs 340 Bytes
de2bd2f9   “wangming”   项目初始化
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);
      }
  }