using SqlSugar; namespace OpenAuth.Repository { /// /// SqlSugar仓储 /// 具体用法参考:https://www.donet5.com/Home/Doc?typeId=1228 /// public class SqlSugarRepository : SimpleClient where T : class, new() { public SqlSugarRepository(ISqlSugarClient client) { base.Context = client; } } }