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
31
|
namespace Yi.Framework.Rbac.Domain.Shared.Dtos;
public class Vue3PureRouterDto
{
public Guid Id { get; set; }
public Guid ParentId { get; set; }
public string Path { get; set; }
public string Name { get; set; }
public MetaPureRouterDto Meta { get; set; } = new MetaPureRouterDto();
public string? component { get; set; }
public List<Vue3PureRouterDto>? Children { get; set; }
}
public class MetaPureRouterDto
{
public string Icon { get; set; }
public string Title { get; set; }
public List<string>? Roles { get; set; }
public List<string>? Auths { get; set; }
public string? FrameSrc { get; set; }
public string? FrameLoading { get; set; }
public bool? KeepAlive { get; set; }
public bool? showLink { get; set; }
}
|