添加业务表

This commit is contained in:
橙子
2022-04-24 23:09:34 +08:00
parent dc3a465f09
commit 1c9e993194
16 changed files with 263 additions and 7 deletions

View File

@@ -0,0 +1,15 @@
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; }
}
}