refactor: ai+人工重构优化 framework

This commit is contained in:
橙子
2025-02-23 03:06:06 +08:00
parent f9341fd2ac
commit 3e07ca822a
61 changed files with 2604 additions and 1260 deletions

View File

@@ -8,15 +8,18 @@ using Volo.Abp.DependencyInjection;
namespace Yi.Framework.SqlSugarCore.Abstractions
{
/// <summary>
/// SqlSugar数据库上下文接口
/// </summary>
public interface ISqlSugarDbContext
{
/// <summary>
/// SqlSugarDb
/// 获取SqlSugar客户端实例
/// </summary>
ISqlSugarClient SqlSugarClient { get; }
/// <summary>
/// 数据库备份
/// 执行数据库备份
/// </summary>
void BackupDataBase();
}