1 | |
package org.kuali.core.db.torque.pojo; |
2 | |
|
3 | 0 | public class Column { |
4 | |
String name; |
5 | |
Integer sqlType; |
6 | |
Integer size; |
7 | |
Integer decimalDigits; |
8 | |
Integer nullType; |
9 | |
String defValue; |
10 | |
|
11 | |
public String getName() { |
12 | 0 | return name; |
13 | |
} |
14 | |
|
15 | |
public void setName(String name) { |
16 | 0 | this.name = name; |
17 | 0 | } |
18 | |
|
19 | |
public Integer getSqlType() { |
20 | 0 | return sqlType; |
21 | |
} |
22 | |
|
23 | |
public void setSqlType(Integer sqlType) { |
24 | 0 | this.sqlType = sqlType; |
25 | 0 | } |
26 | |
|
27 | |
public Integer getSize() { |
28 | 0 | return size; |
29 | |
} |
30 | |
|
31 | |
public void setSize(Integer size) { |
32 | 0 | this.size = size; |
33 | 0 | } |
34 | |
|
35 | |
public Integer getDecimalDigits() { |
36 | 0 | return decimalDigits; |
37 | |
} |
38 | |
|
39 | |
public void setDecimalDigits(Integer decimalDigits) { |
40 | 0 | this.decimalDigits = decimalDigits; |
41 | 0 | } |
42 | |
|
43 | |
public Integer getNullType() { |
44 | 0 | return nullType; |
45 | |
} |
46 | |
|
47 | |
public void setNullType(Integer nullType) { |
48 | 0 | this.nullType = nullType; |
49 | 0 | } |
50 | |
|
51 | |
public String getDefValue() { |
52 | 0 | return defValue; |
53 | |
} |
54 | |
|
55 | |
public void setDefValue(String defValue) { |
56 | 0 | this.defValue = defValue; |
57 | 0 | } |
58 | |
} |