namespace MiaoYu.Shared.Admin.ApplicationServices;
///
///
///
public interface IDatabaseTableService : IScopedDependency
{
///
/// 获取所有的表 包含表下面的列
///
///
public List GetAllTableInfos() => default;
///
/// 获取所有的表 包含表下面的列
///
///
public List GetAllTables();
///
/// 获取表信息根据缓存
///
///
public List GetAllTablesByCache() => default;
///
/// 清空所有表缓存信息
///
///
public bool ClearAllTablesByCache();
///
/// 获取数据库名称
///
///
public string? GetDatabaseName() => default;
}