ningshuxia
2024-06-24 5d674c809bf51b77ddd31a365bcfcfe12b35c556
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 AnalysisConclusion : Yw.DAL.PostgreSql.BaseDAL<Entity.AnalysisConclusion>, IAnalysisConclusion
    {
        /// <summary>
        /// 
        /// </summary>
        public override ConnectionConfig ConnectionConfig
        {
            get { return ConfigHelper.PostgreSqlConnectionConfig; }
 
        }
 
        public bool BulkInsertsEx(string runFlag, List<Entity.AnalysisConclusion> list)
        {
            throw new NotImplementedException();
        }
 
        public bool DeleteAllTable()
        {
            throw new NotImplementedException();
        }
 
        public bool ExistTable(string runFlag)
        {
            throw new NotImplementedException();
        }
 
        public Dictionary<string, List<Entity.AnalysisConclusion>> GetAllTable()
        {
            throw new NotImplementedException();
        }
 
        public List<string> GetAllTableName()
        {
            throw new NotImplementedException();
        }
 
        public List<Entity.AnalysisConclusion> GetList(string runFlag, double targetHead)
        {
            throw new NotImplementedException();
        }
 
        public List<Entity.AnalysisConclusion> GetNoAnalysisByTableName(string tableName)
        {
            throw new NotImplementedException();
        }
 
        public string GetTableName(string runFlag)
        {
            throw new NotImplementedException();
        }
    }
}