-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPostgreSqlTableStruct.cs
62 lines (52 loc) · 1.72 KB
/
PostgreSqlTableStruct.cs
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
58
59
60
61
62
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DBUtil
{
/// <summary>
/// 表结构描述类(实验中...)
/// </summary>
public class PostgreSqlTableStruct : TableStruct
{
public List<Column> Columns = new List<Column>();
public List<Constraint> Constraints = new List<Constraint>();
public List<Trigger> Triggers = new List<Trigger>();
public List<Index> Indexs = new List<Index>();
public class Column
{
public string Name { set; get; }
public string Type { set; get; }
public string Desc { set; get; }
public bool IsNullable { set; get; }
public int MaxLength { set; get; }
public string Default { set; get; }
public bool HasDefault { get; set; }
public bool IsUnique { set; get; }
public bool IsUniqueUion { get; set; }
public String UniqueCols { get; set; }
}
public class Constraint
{
public string Name { set; get; }
public string Type { set; get; }
public string DelType { set; get; }
public string UpdateType { set; get; }
public string Keys { set; get; }
public string RefStr { set; get; }
public string Remark { set; get; }
}
public class Trigger
{
public string Name { set; get; }
public string Type { set; get; }
}
public class Index
{
public string Name { set; get; }
public string Desc { set; get; }
public string Keys { set; get; }
}
}
}