Helius
2021-02-26 de04085526eda992155716eda98af621ad681e4e
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
package com.matrix.codeGeneration.model;
 
/**
 * 属性名称和字段名称的对应bean
 * 
 * @author Matrix-j
 *
 */
public class PropertyColumn {
    /**
     * 属性名称
     */
    private String property;
    /**
     * 字段名称
     */
    private String column;
    /**
     * 类型名称
     */
    private String classType;
 
    /**
     * JDBC名称
     */
    private String jdbcType;
    
    /**
     * JDBC名称 加长度
     */
    private String fullJdbcType;
    
    
    /**
     * 是否为主键
     * 
     */
    private Boolean isPrimaryKey;
    
    /**
     * 是否在界面显示
     * 在数据库用[显示字段]备注表示在界面显示
     */
    private Boolean isVisible;
    
    /**
     * 是否必填
     * 在数据库用[显示字段*]备注表示必填项
     */
    private Boolean isNecessary;
    
    /**
     * 是否可为空
     */
    private String isAllowNull;
    /**
     * 显示在界面的名称
     */
    private String showName;
    
    /**
     * 是否为外键
     */
    private Boolean isForeignKey;
 
    /**
     * 外键表名
     */
    private String foreignTableName;
 
    /**
     * 备注
     */
    private String memo;
 
    /**
     * 字段最大长度
     */
    private String columnLength;
 
    /**
     * 方法名称
     */
    private String methodName;
 
    /**
     * 索引名称
     */
    private String indexName;
 
    public String getMethodName() {
        return methodName;
    }
 
    public void setMethodName(String methodName) {
        this.methodName = methodName;
    }
 
    public String getMemo() {
        return memo;
    }
 
    public void setMemo(String memo) {
        this.memo = memo;
    }
 
    public String getForeignTableName() {
        return foreignTableName;
    }
 
    public void setForeignTableName(String foreignTableName) {
        this.foreignTableName = foreignTableName;
    }
 
    public String getProperty() {
        return property;
    }
 
    public void setProperty(String property) {
        this.property = property;
    }
 
    public String getColumn() {
        return column;
    }
 
    public void setColumn(String column) {
        this.column = column;
    }
 
    public String getClassType() {
        return classType;
    }
 
    public void setClassType(String classType) {
        this.classType = classType;
    }
 
    
    public Boolean getIsVisible() {
        return isVisible;
    }
 
    public void setIsVisible(Boolean isVisible) {
        this.isVisible = isVisible;
    }
 
    public Boolean getIsNecessary() {
        return isNecessary;
    }
 
    public void setIsNecessary(Boolean isNecessary) {
        this.isNecessary = isNecessary;
    }
 
    public String getJdbcType() {
        return jdbcType;
    }
 
    public void setJdbcType(String jdbcType) {
        this.jdbcType = jdbcType;
    }
 
    public Boolean getIsPrimaryKey() {
        return isPrimaryKey;
    }
 
    public void setIsPrimaryKey(Boolean isPrimaryKey) {
        this.isPrimaryKey = isPrimaryKey;
    }
 
    public Boolean getIsForeignKey() {
        return isForeignKey;
    }
 
    public void setIsForeignKey(Boolean isForeignKey) {
        this.isForeignKey = isForeignKey;
    }
 
    public String getColumnLength() {
        return columnLength;
    }
 
    public void setColumnLength(String columnLength) {
        this.columnLength = columnLength;
    }
 
    public String getShowName() {
        return showName;
    }
 
    public void setShowName(String showName) {
        this.showName = showName;
    }
 
    public String getFullJdbcType() {
        return fullJdbcType;
    }
 
    public void setFullJdbcType(String fullJdbcType) {
        this.fullJdbcType = fullJdbcType;
    }
    public String getIsAllowNull() {
        return isAllowNull;
    }
 
    public void setIsAllowNull(String isAllowNull) {
        this.isAllowNull = isAllowNull;
    }
 
    public String getIndexName() {
        return indexName;
    }
 
    public void setIndexName(String indexName) {
        this.indexName = indexName;
    }
}