Blame view

泰额版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application.Contracts/Dtos/RbacMenu/RbacMenuCreateInputVo.cs 709 Bytes
59e51671   “wangming”   1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
  namespace FoodLabeling.Application.Contracts.Dtos.RbacMenu;
  
  /// <summary>
  /// 新增权限(Menu)入参(美国版对外)
  /// </summary>
  public class RbacMenuCreateInputVo
  {
      public string MenuName { get; set; } = string.Empty;
  
      /// <summary>
      /// 父级IDmenu 表为字符串ID,可能是数字;根节点默认 0
      /// </summary>
      public string ParentId { get; set; } = "0";
  
      public int MenuType { get; set; }
  
      public int MenuSource { get; set; }
  
      public string? PermissionCode { get; set; }
  
      public string? Router { get; set; }
  
      public string? Component { get; set; }
  
      public int OrderNum { get; set; } = 0;
  
      public bool State { get; set; } = true;
  }