forked from github/dataease
Merge pull request #7667 from dataease/pr@dev-v2@sync-TableField-add-precision
fix(同步管理-任务管理): 目标表字段无法设置小数精度问题
This commit is contained in:
commit
575122be47
@ -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