You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.2 KiB
C#
42 lines
1.2 KiB
C#
namespace Admin.NET.Plugin.HwPortal;
|
|
|
|
[SugarTable("hw_web_menu1")]
|
|
public class HwWebMenu1 : 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 = "value")]
|
|
public string Value { 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<HwWebMenu1> Children { get; set; } = new();
|
|
}
|