Files
Yi.Framework/Yi.Framework.Net6/Yi.Framework.Model/MenuEntity.cs
2022-04-24 23:09:34 +08:00

16 lines
329 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace Yi.Framework.Model.Models
{
/// <summary>
/// 菜单表
///</summary>
public partial class MenuEntity
{
[SqlSugar.SugarColumn(IsIgnore = true)]
public List<MenuEntity> Childs { get; set; }
}
}