增加对数据库自动生成主键的支持;

优化基础业务类结构;
This commit is contained in:
yubaolee
2021-03-13 23:45:10 +08:00
parent f652d533aa
commit 127d86616f
28 changed files with 150 additions and 122 deletions

View File

@@ -10,7 +10,7 @@ namespace OpenAuth.App
/// 树状结构处理
/// </summary>
/// <typeparam name="T"></typeparam>
public class BaseTreeApp<T,TDbContext> :BaseApp<T,TDbContext> where T : TreeEntity where TDbContext :DbContext
public class BaseTreeApp<T,TDbContext> :BaseStringApp<T,TDbContext> where T : TreeEntity where TDbContext :DbContext
{