Blame view

Yi.Abp.Net8/module/rbac/Yi.Framework.Rbac.Application.Contracts/Dtos/Menu/MenuCreateInputVo.cs 1.14 KB
515fceeb   “wangming”   框架初始化
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
29
30
  using Yi.Framework.Rbac.Domain.Shared.Enums;
  
  namespace Yi.Framework.Rbac.Application.Contracts.Dtos.Menu
  {
      /// <summary>
      /// Menu输入创建对象
      /// </summary>
      public class MenuCreateInputVo
      {
          public Guid? Id { get; set; }
          public DateTime CreationTime { get; set; } = DateTime.Now;
          public Guid? CreatorId { get; set; }
          public bool State { get; set; }
          public string MenuName { get; set; } = string.Empty;
          public MenuTypeEnum MenuType { get; set; } = MenuTypeEnum.Menu;
          public string? PermissionCode { get; set; }
          public Guid ParentId { get; set; }
          public string? MenuIcon { get; set; }
          public string? Router { get; set; }
          public bool IsLink { get; set; }
          public bool IsCache { get; set; }
          public bool IsShow { get; set; } = true;
          public string? Remark { get; set; }
          public string? Component { get; set; }
          public string? Query { get; set; }
          public int OrderNum { get; set; }
          public MenuSourceEnum MenuSource { get; set; } = MenuSourceEnum.Ruoyi;
          public string? RouterName { get; set; }
      }
  }