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