You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: springboot-starter-data-fast/src/main/java/com/codingapi/springboot/fast/metadata/TableEntityClassBuilder.java
Copy file name to clipboardExpand all lines: springboot-starter-data-fast/src/main/java/com/codingapi/springboot/fast/metadata/TableEntityMetadata.java
+30-8Lines changed: 30 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -68,6 +68,12 @@ public static class ColumnMeta {
68
68
* 备注
69
69
*/
70
70
privateStringcomment;
71
+
72
+
/**
73
+
* 是否为lob 对应长内容
74
+
*/
75
+
privatebooleanisLob;
76
+
71
77
/**
72
78
* 是否唯一
73
79
*/
@@ -92,7 +98,13 @@ public static class ColumnMeta {
92
98
* 字段长度
93
99
*/
94
100
privateintlength;
101
+
/**
102
+
* 字段精度
103
+
*/
95
104
privateintprecision;
105
+
/**
106
+
* 字段缩放
107
+
*/
96
108
privateintscale;
97
109
}
98
110
@@ -138,7 +150,7 @@ public void setTable(String name) {
Copy file name to clipboardExpand all lines: springboot-starter-data-fast/src/test/java/com/codingapi/springboot/fast/generator/DynamicTableGeneratorQueryTest.java
Copy file name to clipboardExpand all lines: springboot-starter-data-fast/src/test/java/com/codingapi/springboot/fast/generator/DynamicTableGeneratorTest.java
0 commit comments