Blame view

泰额版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling/FoodLabeling.Th.Application.Contracts/Dtos/RbacMenu/ThRbacMenuTreeDto.cs 1.31 KB
e41dfa09   李曜臣   泰鄂版菜单;租户列表
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
  using Yi.Framework.Rbac.Domain.Shared.Enums;
  
  namespace FoodLabeling.Th.Application.Contracts.Dtos.RbacMenu;
  
  /// <summary>
  /// 泰额版菜单树节点(含 menu 表主要字段)
  /// </summary>
  public class ThRbacMenuTreeDto
  {
      public string Id { get; set; } = string.Empty;
  
      public bool IsDeleted { get; set; }
  
      public DateTime CreationTime { get; set; }
  
      public string? CreatorId { get; set; }
  
      public string? LastModifierId { get; set; }
  
      public DateTime? LastModificationTime { get; set; }
  
      public int OrderNum { get; set; }
  
      public bool State { get; set; }
  
      public string MenuName { get; set; } = string.Empty;
  
      public string? RouterName { get; set; }
  
      public MenuTypeEnum MenuType { get; set; }
  
      public string? PermissionCode { get; set; }
  
      public string ParentId { get; set; } = string.Empty;
  
      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; }
  
      public string? Remark { get; set; }
  
      public string? Component { get; set; }
  
      public MenuSourceEnum MenuSource { get; set; }
  
      public string? Query { get; set; }
  
      public string? ConcurrencyStamp { get; set; }
  
      public List<ThRbacMenuTreeDto>? Children { get; set; }
  }