分类接口完成

This commit is contained in:
coward
2024-10-24 16:55:31 +08:00
parent f66fef2ce0
commit 980c81af11
5 changed files with 151 additions and 15 deletions

9
http/param/navigation.go Normal file
View File

@@ -0,0 +1,9 @@
package param
// SaveNavigationType
// @description: 新增/编辑导航分类
type SaveNavigationType struct {
Id string `json:"id" form:"id" binding:"omitempty"`
Name string `json:"name" form:"name" binding:"required"`
Icon string `json:"icon" form:"icon" binding:"required"`
}