[feat] 移除 DataListOperation 多余的字段
This commit is contained in:
parent
895528e82c
commit
90a3c22545
@ -5,25 +5,15 @@ type DataListOperation struct {
|
|||||||
Puuid string `db:"pUuid"`
|
Puuid string `db:"pUuid"`
|
||||||
DataListUuid string `db:"data_list_uuid"` // 所属列表 UUID
|
DataListUuid string `db:"data_list_uuid"` // 所属列表 UUID
|
||||||
Name string `db:"name"` // 按钮名称
|
Name string `db:"name"` // 按钮名称
|
||||||
Code string `db:"code"` // 按钮标识
|
|
||||||
Category string `db:"category"` // 按钮类型
|
Category string `db:"category"` // 按钮类型
|
||||||
Icon string `db:"icon"` // 按钮图标
|
Icon string `db:"icon"` // 按钮图标
|
||||||
Size string `db:"size"` // 按钮大小
|
|
||||||
Block bool `db:"block"` // 固定宽度
|
|
||||||
Ghost bool `db:"ghost"` // 背景透明
|
|
||||||
Shape string `db:"shape"` // 按钮形状
|
|
||||||
Type string `db:"type"` // 按钮样式
|
Type string `db:"type"` // 按钮样式
|
||||||
IsPopConfirm bool `db:"isPopConfirm"` // 按钮提示
|
|
||||||
PopTitle string `db:"popTitle"` // 按钮提示
|
|
||||||
PopOkText string `db:"popOkText"` // 按钮提示
|
|
||||||
PopCancelText string `db:"popCancelText"` // 按钮提示
|
|
||||||
PopOkType string `db:"popOkType"` // 按钮提示
|
|
||||||
PopPlacement string `db:"popPlacement"` // 按钮提示
|
|
||||||
Widget string `db:"widget"` // 按钮组件
|
Widget string `db:"widget"` // 按钮组件
|
||||||
WidgetType string `db:"widgetType"` // 组件类型
|
WidgetType string `db:"widgetType"` // 组件类型
|
||||||
WidgetProps map[string]any `db:"widgetProps"` // 组件PROPS
|
WidgetProps map[string]any `db:"widgetProps"` // 组件PROPS
|
||||||
WidgetSetting map[string]any `db:"widgetSetting"` // 组件设置
|
WidgetSetting map[string]any `db:"widgetSetting"` // 组件设置
|
||||||
WidgetContainerSetting map[string]any `db:"widgetContainerSetting"` // 组件容器设置
|
WidgetContainerSetting map[string]any `db:"widgetContainerSetting"` // 组件容器设置
|
||||||
|
Confirm map[string]any `db:"confirm"` // 按钮提示
|
||||||
IsRefresh int `db:"isRefresh"` // 0不刷新, 1刷新所有数据, 2刷新一条数据
|
IsRefresh int `db:"isRefresh"` // 0不刷新, 1刷新所有数据, 2刷新一条数据
|
||||||
NoAuthType string `db:"noAuthType"` // 无按钮权限处理方式
|
NoAuthType string `db:"noAuthType"` // 无按钮权限处理方式
|
||||||
Roles []string `db:"roles"` // 按钮权限
|
Roles []string `db:"roles"` // 按钮权限
|
||||||
|
@ -17,14 +17,9 @@ import (
|
|||||||
type Operation struct {
|
type Operation struct {
|
||||||
Uuid string `json:"uuid"`
|
Uuid string `json:"uuid"`
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
Code string `json:"code"`
|
|
||||||
Icon string `json:"icon"`
|
Icon string `json:"icon"`
|
||||||
Size string `json:"size"`
|
|
||||||
Block bool `json:"block"`
|
|
||||||
Ghost bool `json:"ghost"`
|
|
||||||
Shape string `json:"shape"`
|
|
||||||
Type string `json:"type"`
|
Type string `json:"type"`
|
||||||
PopConfirm any `json:"popConfirm,omitempty"`
|
Confirm map[string]any `json:"confirm"`
|
||||||
Widget string `json:"widget"`
|
Widget string `json:"widget"`
|
||||||
WidgetType string `json:"widgetType"`
|
WidgetType string `json:"widgetType"`
|
||||||
WidgetProps any `json:"widgetProps"`
|
WidgetProps any `json:"widgetProps"`
|
||||||
|
Loading…
Reference in New Issue
Block a user