namespace Admin.NET.Plugin.HwPortal; [SugarTable("hw_web_menu")] public class HwWebMenu : HwPortalBaseEntity { [SugarColumn(ColumnName = "web_menu_id", IsPrimaryKey = true)] public long? WebMenuId { get; set; } [SugarColumn(ColumnName = "parent")] public long? Parent { get; set; } [SugarColumn(ColumnName = "ancestors")] public string Ancestors { get; set; } [SugarColumn(ColumnName = "status")] public string Status { get; set; } [SugarColumn(ColumnName = "web_menu_name")] public string WebMenuName { get; set; } [SugarColumn(ColumnName = "tenant_id")] public long? TenantId { get; set; } [SugarColumn(ColumnName = "web_menu__pic")] public string WebMenuPic { get; set; } [SugarColumn(ColumnName = "web_menu_type")] public long? WebMenuType { get; set; } [SugarColumn(ColumnName = "order")] public long? Order { get; set; } [SugarColumn(ColumnName = "is_delete")] public string IsDelete { get; set; } [SugarColumn(ColumnName = "web_menu_name_english")] public string WebMenuNameEnglish { get; set; } [SugarColumn(IsIgnore = true)] public List Children { get; set; } = new(); }