mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-18 15:36:37 +08:00
17 lines
549 B
C#
17 lines
549 B
C#
using System.Reflection;
|
|
using SqlSugar;
|
|
|
|
namespace Yi.Framework.SqlSugarCore;
|
|
|
|
public interface ISqlSugarDbContextDependencies
|
|
{
|
|
void OnSqlSugarClientConfig(ISqlSugarClient client);
|
|
|
|
void DataExecuted(object obj, DataAfterModel dataAfterModel);
|
|
void DataExecuting(object obj, DataFilterModel dataAfterModel);
|
|
|
|
void OnLogExecuting(string str, SugarParameter[] parameters);
|
|
void OnLogExecuted(string str, SugarParameter[] parameters);
|
|
|
|
void EntityService(PropertyInfo propertyInfo, EntityColumnInfo entityColumnInfo);
|
|
} |