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
 
namespace IStation.DAL.PostgreSql
{
    /// <summary>
    /// 
    /// </summary>
    public partial class AnalysisPump : Yw.DAL.PostgreSql.BaseDAL<Entity.AnalysisPump>, IAnalysisPump
    {
        /// <summary>
        /// 
        /// </summary>
        public override ConnectionConfig ConnectionConfig
        {
            get { return ConfigHelper.PostgreSqlConnectionConfig; }
 
        }
 
        public bool BulkInsertsEx(string runFlag, List<Entity.AnalysisPump> list)
        {
            throw new NotImplementedException();
        }
 
        public bool DeleteAllTable()
        {
            throw new NotImplementedException();
        }
 
        public bool ExistTable(string runFlag)
        {
            throw new NotImplementedException();
        }
 
        public List<Entity.AnalysisPump> GetAllByTableName(string tableName)
        {
            throw new NotImplementedException();
        }
 
        public Dictionary<string, List<Entity.AnalysisPump>> GetAllTable()
        {
            throw new NotImplementedException();
        }
 
        public List<string> GetAllTableName()
        {
            throw new NotImplementedException();
        }
    }
}