添加了主菜单的初始化

This commit is contained in:
2025-06-29 12:37:35 +08:00
parent dba56f07d2
commit 6aa17e7396
5 changed files with 68 additions and 39 deletions

View File

@@ -15,6 +15,10 @@ public class DbMenu
[SugarColumn(ColumnDataType = "varchar(20)", SqlParameterDbType = typeof(EnumToStringConvert))]
public MenuType Type { get; set; }
public int DataId { get; set; }
[SugarColumn(IsIgnore = true)]
public Object? Data { get; set; }
[SugarColumn(IsIgnore = true)]
public List<DbMenu> Items { get; set; }
}