调整项目依赖
This commit is contained in:
12
common/Tnb.SqlSugar/Repositories/ISqlSugarRepository.cs
Normal file
12
common/Tnb.SqlSugar/Repositories/ISqlSugarRepository.cs
Normal 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()
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user