namespace DS.WMS.Core.System.Dtos; /// /// 路由实体 /// public class RouteItem { /// /// /// public long? Id { get; set; } /// /// /// public long? ParentId { get; set; } /// /// /// public string Path { get; set; } public string Name { get; set; } public string Component { get; set; } public string Redirect { get; set; } public RouteMeta Meta { get; set; } public Tag Tag { get; set; } public List Children { get; set; } /// /// 排序码 /// public int SortCode { get; set; } } public class RouteMeta { /// /// /// public string Title { get; set; } public string Icon { get; set; } } public class Tag { /// /// /// public string Content { get; set; } public bool Dot { get; set; } public string Type { get; set; } }