zs
2025-05-20 1772504da433bec2f1695d47e5946c1192e876fb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package dto
 
type RequestBody struct {
    WidgetName string                            `json:"widgetName"`
    WidgetId   string                            `json:"widgetId"`
    Menu       []map[string]interface{}          `json:"menu"`
    MenuMap    map[string]map[string]interface{} `json:"menuMap"`
    Type       int                               `json:"type"`
}
 
type MenuConfig struct {
    Menu    []map[string]interface{}
    MenuMap map[string]map[string]interface{}
}
 
type ErrorType struct {
    string
    int
    error
}