ningshuxia
2025-04-01 f2feed624a3186e020bc0283b41e36eb89164a6c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
namespace IStation.DAL
{
    /// <summary>
    /// 
    /// </summary>
    public interface IAnalysisPump : IBaseDAL<Entity.AnalysisPump>
    {
        /// <summary>
        /// 获取全部表名
        /// </summary>
        List<string> GetAllTableName();
 
        /// <summary>
        /// 获取全部表
        /// </summary>
        Dictionary<string, List<Entity.AnalysisPump>> GetAllTable();
 
        /// <summary>
        /// 通过表名获取未分析组合
        /// </summary>
        List<Entity.AnalysisPump> GetAllByTableName(string tableName);
 
        /// <summary>
        /// 大批量插入(表不存在就新建)
        /// </summary>
        bool BulkInsertsEx(string runFlag, List<Entity.AnalysisPump> list);
         
 
        /// <summary>
        /// 判断数据库是否存在表
        /// </summary> 
        bool ExistTable(string runFlag);
 
        /// <summary>
        /// 删除所有表
        /// </summary>
        bool DeleteAllTable();
    }
}