Blame view

美国版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application.Contracts/Dtos/RbacRoleMenu/RbacRoleMenuRemoveInputVo.cs 335 Bytes
9df65e38   李曜臣   实现美国版门店与RBAC对外接口
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  using System.ComponentModel.DataAnnotations;
  
  namespace FoodLabeling.Application.Contracts.Dtos.RbacRoleMenu;
  
  /// <summary>
  /// 角色-权限移除入参
  /// </summary>
  public class RbacRoleMenuRemoveInputVo
  {
      [Required]
      public Guid RoleId { get; set; }
  
      [Required]
      public List<Guid> MenuIds { get; set; } = new();
  }