-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTableInfo.java
More file actions
108 lines (77 loc) · 2.27 KB
/
TableInfo.java
File metadata and controls
108 lines (77 loc) · 2.27 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
package com.tockm.bean;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
public class TableInfo {
private String tableName;
private String beanName;
private String beanParamName;
private String comment;
private List<FieldInfo> fieldList;
// 扩展字段信息
private List<FieldInfo> fieldExtendList;
private Map<String, List<FieldInfo>> keyIndexMap = new LinkedHashMap();
private Boolean haveDate;
private Boolean haveDateTime;
private Boolean haveBigDecimal;
public String getTableName() {
return tableName;
}
public void setTableName(String tableName) {
this.tableName = tableName;
}
public String getBeanName() {
return beanName;
}
public void setBeanName(String beanName) {
this.beanName = beanName;
}
public String getBeanParamName() {
return beanParamName;
}
public void setBeanParamName(String beanParamName) {
this.beanParamName = beanParamName;
}
public String getComment() {
return comment;
}
public void setComment(String comment) {
this.comment = comment;
}
public List<FieldInfo> getFieldList() {
return fieldList;
}
public void setFieldList(List<FieldInfo> fieldList) {
this.fieldList = fieldList;
}
public Map<String, List<FieldInfo>> getKeyIndexMap() {
return keyIndexMap;
}
public void setKeyIndexMap(Map<String, List<FieldInfo>> keyIndexMap) {
this.keyIndexMap = keyIndexMap;
}
public Boolean getHaveDate() {
return haveDate;
}
public void setHaveDate(Boolean haveDate) {
this.haveDate = haveDate;
}
public Boolean getHaveDateTime() {
return haveDateTime;
}
public void setHaveDateTime(Boolean haveDateTime) {
this.haveDateTime = haveDateTime;
}
public Boolean getHaveBigDecimal() {
return haveBigDecimal;
}
public void setHaveBigDecimal(Boolean haveBigDecimal) {
this.haveBigDecimal = haveBigDecimal;
}
public List<FieldInfo> getFieldExtendList() {
return fieldExtendList;
}
public void setFieldExtendList(List<FieldInfo> fieldExtendList) {
this.fieldExtendList = fieldExtendList;
}
}