EasyMES/WaterCloud.Service/Infrastructure/IDatabaseTableService.cs
2022-10-20 17:12:54 +08:00

16 lines
481 B
C#

using System.Collections.Generic;
using System.Threading.Tasks;
using WaterCloud.Code;
using WaterCloud.Domain;
namespace WaterCloud.Service
{
public interface IDatabaseTableService
{
Task<bool> DatabaseBackup(string backupPath);
Task<List<TableInfo>> GetTableList(string tableName);
Task<List<TableInfo>> GetTablePageList(string tableName, Pagination pagination);
Task<List<TableFieldInfo>> GetTableFieldList(string tableName);
}
}