zs
2025-05-16 0999b36321bac9e303b547b55c35b91d1546f1c4
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
}