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