136 lines
3.6 KiB
C#
136 lines
3.6 KiB
C#
|
||
|
||
namespace YY.Admin.Core;
|
||
|
||
/// <summary>
|
||
/// 系统菜单表
|
||
/// </summary>
|
||
[SugarTable("sys_menu", "系统菜单表")]
|
||
[SysTable]
|
||
[SugarIndex("index_{table}_T", nameof(Title), OrderByType.Asc)]
|
||
[SugarIndex("index_{table}_T2", nameof(Type), OrderByType.Asc)]
|
||
public partial class SysMenu : EntityBase
|
||
{
|
||
/// <summary>
|
||
/// 父Id
|
||
/// </summary>
|
||
[SugarColumn(ColumnDescription = "父Id")]
|
||
public long Pid { get; set; }
|
||
|
||
/// <summary>
|
||
/// 菜单类型(1目录 2菜单 3按钮)
|
||
/// </summary>
|
||
[SugarColumn(ColumnDescription = "菜单类型")]
|
||
public MenuTypeEnum Type { get; set; }
|
||
|
||
/// <summary>
|
||
/// 路由名称
|
||
/// </summary>
|
||
[SugarColumn(ColumnDescription = "路由名称", Length = 64)]
|
||
[MaxLength(64)]
|
||
public string? Name { get; set; }
|
||
|
||
/// <summary>
|
||
/// 路由地址
|
||
/// </summary>
|
||
[SugarColumn(ColumnDescription = "路由地址", Length = 128)]
|
||
[MaxLength(128)]
|
||
public string? Path { get; set; }
|
||
|
||
/// <summary>
|
||
/// 组件路径
|
||
/// </summary>
|
||
[SugarColumn(ColumnDescription = "组件路径", Length = 128)]
|
||
[MaxLength(128)]
|
||
public string? Component { get; set; }
|
||
|
||
/// <summary>
|
||
/// 重定向
|
||
/// </summary>
|
||
[SugarColumn(ColumnDescription = "重定向", Length = 128)]
|
||
[MaxLength(128)]
|
||
public string? Redirect { get; set; }
|
||
|
||
/// <summary>
|
||
/// 权限标识
|
||
/// </summary>
|
||
[SugarColumn(ColumnDescription = "权限标识", Length = 128)]
|
||
[MaxLength(128)]
|
||
public string? Permission { get; set; }
|
||
|
||
/// <summary>
|
||
/// 菜单名称
|
||
/// </summary>
|
||
[SugarColumn(ColumnDescription = "菜单名称", Length = 64)]
|
||
[Required, MaxLength(64)]
|
||
public virtual string Title { get; set; }
|
||
|
||
/// <summary>
|
||
/// 图标
|
||
/// </summary>
|
||
[SugarColumn(ColumnDescription = "图标", Length = 128)]
|
||
[MaxLength(128)]
|
||
public string? Icon { get; set; } = "ele-Menu";
|
||
|
||
/// <summary>
|
||
/// 是否内嵌
|
||
/// </summary>
|
||
[SugarColumn(ColumnDescription = "是否内嵌")]
|
||
public bool IsIframe { get; set; }
|
||
|
||
/// <summary>
|
||
/// 外链链接
|
||
/// </summary>
|
||
[SugarColumn(ColumnDescription = "外链链接", Length = 256)]
|
||
[MaxLength(256)]
|
||
public string? OutLink { get; set; }
|
||
|
||
/// <summary>
|
||
/// 是否隐藏
|
||
/// </summary>
|
||
[SugarColumn(ColumnDescription = "是否隐藏")]
|
||
public bool IsHide { get; set; }
|
||
|
||
/// <summary>
|
||
/// 是否缓存
|
||
/// </summary>
|
||
[SugarColumn(ColumnDescription = "是否缓存")]
|
||
public bool IsKeepAlive { get; set; } = true;
|
||
|
||
/// <summary>
|
||
/// 是否固定
|
||
/// </summary>
|
||
[SugarColumn(ColumnDescription = "是否固定")]
|
||
public bool IsAffix { get; set; }
|
||
|
||
/// <summary>
|
||
/// 桌面端登录后默认打开的首页(全库仅一项建议为 true,保存时由服务层互斥)
|
||
/// </summary>
|
||
[SugarColumn(ColumnDescription = "桌面端默认首页")]
|
||
public bool IsDefaultDesktopHome { get; set; }
|
||
|
||
/// <summary>
|
||
/// 排序
|
||
/// </summary>
|
||
[SugarColumn(ColumnDescription = "排序")]
|
||
public int OrderNo { get; set; } = 100;
|
||
|
||
/// <summary>
|
||
/// 状态
|
||
/// </summary>
|
||
[SugarColumn(ColumnDescription = "状态")]
|
||
public StatusEnum Status { get; set; } = StatusEnum.Enable;
|
||
|
||
/// <summary>
|
||
/// 备注
|
||
/// </summary>
|
||
[SugarColumn(ColumnDescription = "备注", Length = 256)]
|
||
[MaxLength(256)]
|
||
public string? Remark { get; set; }
|
||
|
||
/// <summary>
|
||
/// 菜单子项
|
||
/// </summary>
|
||
[SugarColumn(IsIgnore = true)]
|
||
public List<SysMenu> Children { get; set; } = new();
|
||
} |