123456789101112131415161718192021222324252627 |
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using YiSha.Enum;
- using YiSha.Model.Result.SystemManage;
- using YiSha.Util.Model;
- namespace YiSha.IService.SystemManage
- {
- public partial interface IDatabaseTableSqlServerService : IDatabaseTableService
- {
- #region 获取数据
- Task<List<TableInfo>> GetTableList(string tableName, DBConnectTypeEnum dbConnectType);
- Task<List<TableInfo>> GetTablePageList(string tableName, DBConnectTypeEnum dbConnectType, Pagination pagination);
- Task<List<TableFieldInfo>> GetTableFieldList(string tableName, DBConnectTypeEnum dbConnectType);
- #endregion
- #region 公有方法
- Task<bool> DatabaseBackup(string database, string backupPath, DBConnectTypeEnum dbConnectType);
- #endregion
- #region 私有方法
- #endregion
- }
- }
|