[feat] 新增表单分组标识字段

This commit is contained in:
what 2024-09-24 15:21:12 +08:00
parent 722d821818
commit 964c25efe1
2 changed files with 2 additions and 0 deletions

View File

@ -14,6 +14,7 @@ type GridLayoutForm struct {
MarginY int `db:"marginY"` // 栅格 y 间距
Cols int `db:"cols"` // 网格列基数
FormProps []map[string]string `db:"formProps"` // 表单PROPS
Groups []map[string]string `db:"groups"` // 表单分组
ListenChangeFields []string `db:"listenChangeFields"` // 监听字段
ListenChangeFieldsFunc string `db:"listenChangeFieldsFunc"` // 监听字段回调方法
Platform string `db:"platform"`

View File

@ -3,6 +3,7 @@ package base
type GridLayoutFormField struct {
Uuid string `db:"uuid"`
GridLayoutFormUuid string `db:"grid_layout_form_uuid"` // 所属布局 UUID
Group string `db:"group"`
Type string `db:"type"`
X int `db:"x"`
Y int `db:"y"`