mirror of
https://github.com/dataease/dataease.git
synced 2026-05-18 01:38:11 +08:00
Merge pull request #7667 from dataease/pr@dev-v2@sync-TableField-add-precision
fix(同步管理-任务管理): 目标表字段无法设置小数精度问题
This commit is contained in:
@@ -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;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user