mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-11 03:36:42 +08:00
chore: 构建稳定版本
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
using Microsoft.Extensions.Logging;
|
||||
using SqlSugar;
|
||||
using Volo.Abp.DependencyInjection;
|
||||
using Yi.Framework.SqlSugarCore;
|
||||
|
||||
namespace Yi.Framework.Rbac.SqlSugarCore
|
||||
{
|
||||
public class YiRbacDbContext : SqlSugarDbContext
|
||||
{
|
||||
public YiRbacDbContext(IAbpLazyServiceProvider lazyServiceProvider) : base(lazyServiceProvider)
|
||||
{
|
||||
}
|
||||
|
||||
protected override void CustomDataFilter()
|
||||
{
|
||||
base.CustomDataFilter();
|
||||
}
|
||||
|
||||
protected override void DataExecuted(object oldValue, DataAfterModel entityInfo)
|
||||
{
|
||||
base.DataExecuted(oldValue, entityInfo);
|
||||
}
|
||||
|
||||
protected override void DataExecuting(object oldValue, DataFilterModel entityInfo)
|
||||
{
|
||||
base.DataExecuting(oldValue, entityInfo);
|
||||
}
|
||||
|
||||
protected override void OnLogExecuting(string sql, SugarParameter[] pars)
|
||||
{
|
||||
base.OnLogExecuting(sql,pars);
|
||||
}
|
||||
|
||||
protected override void OnLogExecuted(string sql, SugarParameter[] pars)
|
||||
{
|
||||
base.OnLogExecuted(sql, pars);
|
||||
}
|
||||
|
||||
protected override void OnSqlSugarClientConfig(ISqlSugarClient sqlSugarClient)
|
||||
{
|
||||
base.OnSqlSugarClientConfig(sqlSugarClient);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user