namespace IStation.DAL
{
///
///
///
public interface IAnalysisPump : IBaseDAL
{
///
/// 获取全部表名
///
List GetAllTableName();
///
/// 获取全部表
///
Dictionary> GetAllTable();
///
/// 通过表名获取未分析组合
///
List GetAllByTableName(string tableName);
///
/// 大批量插入(表不存在就新建)
///
bool BulkInsertsEx(string runFlag, List list);
///
/// 判断数据库是否存在表
///
bool ExistTable(string runFlag);
///
/// 删除所有表
///
bool DeleteAllTable();
}
}