Shuxia Ning
2024-09-10 049f546f25cabfb5b08e29c54f49d61a544b0395
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
45
46
47
48
49
50
51
52
53
54
55
56
57
namespace IStation.DAL.PostgreSql
{
    /// <summary>
    /// 
    /// </summary>
    public partial class AnalysisParameter : Yw.DAL.PostgreSql.BaseDAL<Entity.AnalysisParameter>, IAnalysisParameter
    {
        /// <summary>
        /// 
        /// </summary>
        public override ConnectionConfig ConnectionConfig
        {
            get { return ConfigHelper.PostgreSqlConnectionConfig; }
 
        }
 
        public bool BulkInsertsEx(string runFlag, List<Entity.AnalysisParameter> list)
        {
            throw new NotImplementedException();
        }
 
        public bool DeleteAllTable()
        {
            throw new NotImplementedException();
        }
 
        public bool ExistTable(string runFlag)
        {
            throw new NotImplementedException();
        }
 
        public Dictionary<string, List<Entity.AnalysisParameter>> GetAllTable()
        {
            throw new NotImplementedException();
        }
 
        public List<string> GetAllTableName()
        {
            throw new NotImplementedException();
        }
 
        public List<Entity.AnalysisParameter> GetList(string runFlag, double targetHead)
        {
            throw new NotImplementedException();
        }
 
        public List<Entity.AnalysisParameter> GetNoAnalysisByTableName(string tableName)
        {
            throw new NotImplementedException();
        }
 
        public string GetTableName(string runFlag)
        {
            throw new NotImplementedException();
        }
    }
}