forked from github/dataease
fix(数据集): 修复字段类型错误
This commit is contained in:
parent
06d107f3bf
commit
c0a283ab6c
@ -10,14 +10,14 @@ public class TableField {
|
|||||||
private String name;
|
private String name;
|
||||||
private String originName;
|
private String originName;
|
||||||
private String type; //SQL type from java.sql.Types
|
private String type; //SQL type from java.sql.Types
|
||||||
private int precision;
|
private Integer precision;
|
||||||
private long size;
|
private Long size;
|
||||||
private int scale;
|
private Integer scale;
|
||||||
private boolean checked = false;
|
private Boolean checked = false;
|
||||||
private String fieldType;
|
private String fieldType;
|
||||||
private int deType;
|
private Integer deType;
|
||||||
private int deExtractType;
|
private Integer deExtractType;
|
||||||
private int extField;
|
private Integer extField;
|
||||||
private String jsonPath;
|
private String jsonPath;
|
||||||
List<Object> value;
|
List<Object> value;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user