37 lines
902 B
Go
37 lines
902 B
Go
package apiproto
|
|
|
|
type AddMenuReq struct {
|
|
Name string `json:"name"`
|
|
ID string `json:"id"`
|
|
Image string `json:"image"`
|
|
}
|
|
|
|
type UpdateMenuReq struct {
|
|
Name string `json:"name"`
|
|
ID string `json:"id"`
|
|
Image string `json:"image"`
|
|
}
|
|
|
|
type GetAllMenuRspItem struct {
|
|
TraceId string `json:"traceId" `
|
|
Name string `json:"name"`
|
|
ID string `json:"id" `
|
|
Image string `json:"image" `
|
|
SortNum int `json:"sortNum" `
|
|
CreateTime int64 `json:"createTime"` //创建时间
|
|
UpdateTime int64 `json:"updateTime"` //更新时间
|
|
UpdateOperator string `json:"updateOperator"` //更新时间
|
|
}
|
|
|
|
type GetAllMenuRsp struct {
|
|
Total int `json:"total"`
|
|
List []GetAllMenuRspItem `json:"list"`
|
|
}
|
|
|
|
type MenuSortReq struct {
|
|
List []struct {
|
|
TraceId string `json:"traceId"`
|
|
SortNum int `json:"sortNum"`
|
|
} `json:"list"`
|
|
}
|