namespace IStation.DAL
{
///
///
///
public interface IAnalysisParameter : IBaseDAL
{
///
/// 获取表名
///
string GetTableName(string runFlag);
///
/// 获取全部表名
///
List GetAllTableName();
///
/// 获取全部表
///
Dictionary> GetAllTable();
///
/// 大批量插入(表不存在就新建)
///
bool BulkInsertsEx(string runFlag, List list);
///
/// 判断数据库是否存在表
///
bool ExistTable(string runFlag);
///
/// 删除所有表
///
bool DeleteAllTable();
///
/// 查询
///
List GetList(string runFlag, double targetHead);
}
}