Files
web_ylsa/api_file/model/menus.go
2025-07-11 16:54:11 +08:00

15 lines
316 B
Go

package model
import "gorm.io/gorm"
type Menus struct {
MenuId string `json:"menu_id"`
Name string `json:"name"`
Icon string `json:"icon"`
Path string `json:"path"`
RouteOnly bool `json:"route_only"`
UserType string `json:"user_type"`
WhiteList string `json:"white_list"`
gorm.Model
}