Blame view

美国版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application.Contracts/Dtos/RbacRole/RbacRoleGetOutputDto.cs 342 Bytes
9df65e38   李曜臣   实现美国版门店与RBAC对外接口
1
2
3
4
5
6
7
  namespace FoodLabeling.Application.Contracts.Dtos.RbacRole;
  
  /// <summary>
  /// 角色详情输出(美国版对外)
  /// </summary>
  public class RbacRoleGetOutputDto : RbacRoleGetListOutputDto
  {
dbc9750f   李曜臣   成员模块实现
8
9
10
11
      /// <summary>
      /// 该角色已分配的菜单权限ID列表
      /// </summary>
      public List<string> MenuIds { get; set; } = new();
9df65e38   李曜臣   实现美国版门店与RBAC对外接口
12
  }