forked from github/dataease
fix(同步管理-任务管理): 目标表字段无法设置小数精度问题
This commit is contained in:
parent
7fc1e50c3d
commit
d1c7470e75
@ -35,6 +35,7 @@ export interface ITableField {
|
||||
fieldType: string
|
||||
remarks: string
|
||||
fieldSize: number
|
||||
fieldPrecision: number
|
||||
fieldPk: boolean
|
||||
fieldIndex: boolean
|
||||
}
|
||||
|
@ -14,9 +14,13 @@ public class TableField {
|
||||
private String remarks;
|
||||
private String fieldType;
|
||||
private int fieldSize;
|
||||
/**
|
||||
* 精度
|
||||
*/
|
||||
private int fieldPrecision;
|
||||
|
||||
private boolean fieldPk;
|
||||
private boolean fieldIndex;
|
||||
private int accuracy;
|
||||
private Object defaultValue;
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user