zs
2025-04-30 6531b52f50f7dc94ac9136d4eb1d3ecec765516e
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
}