namespace YD_Event.Application.Menu.Dtos; public class SysMenuDetailOutput { /// /// 菜单Id /// public long Id { get; set; } /// /// 菜单名称 /// public string Name { get; set; } /// /// 父级id /// public long? ParentId { get; set; } /// /// 状态 /// public AvailabilityStatus Status { get; set; } /// /// 权限标识 /// public string Code { get; set; } /// /// 排序 /// public int Sort { get; set; } /// /// 组件路径 /// public string Component { get; set; } /// /// 图标 /// public string Icon { get; set; } /// /// 是否固定 /// public bool IsFixed { get; set; } /// /// 是否内嵌 /// public bool IsIframe { get; set; } /// /// 是否缓存 /// public bool IsKeepAlive { get; set; } /// /// 是否可见 /// public bool IsVisible { get; set; } /// /// 外链 /// public string Link { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 路由地址 /// public string Path { get; set; } /// /// 重定向地址 /// public string Redirect { get; set; } /// /// 路由名称 /// public string RouteName { get; set; } /// /// 菜单类型 /// public MenuType Type { get; set; } }