using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Text; using System.Threading.Tasks; using Yi.Framework.Model.Query; namespace Yi.Framework.Repository { public interface IRepository : ISimpleClient where T : class, new() { public Task InsertReturnEntityAsync(T entity); public Task> StoreAsync(string storeName, object para); public object CommonPage(QueryCondition queryCondition); } }