This commit is contained in:
2025-04-14 15:42:22 +08:00
parent 371b89ee8d
commit 461531c308
133 changed files with 58 additions and 14400 deletions

View File

@@ -0,0 +1,26 @@
package dto
type SetMenuDto struct {
ID int32
Name string
Link string
IsList bool
IsSelect bool
Items []*SetMenuDto
}
type OwnerMenuDto struct {
ID int32 `json:"id"`
// 显示名称
DisplayName string `json:"display_name"`
// 菜单url
Url string `json:"url"`
// 上级id
ParentID int32 `json:"parent_id"`
// 菜单图标
Avatar string `json:"avatar"`
// 菜单样式
Style string `json:"style"`
// 是否列表
IsList bool `json:"is_list"`
}