调整项目依赖

This commit is contained in:
2023-03-27 19:09:57 +08:00
parent eb859fe730
commit 847a858d4c
21 changed files with 816 additions and 17 deletions

View File

@@ -0,0 +1,12 @@
using System.Linq.Expressions;
namespace SqlSugar;
/// <summary>
/// SqlSugar 仓储接口定义
/// </summary>
/// <typeparam name="TEntity"></typeparam>
public partial interface ISqlSugarRepository<TEntity> : ISimpleClient<TEntity>
where TEntity : class, new()
{
}