package model import ( "time" ) type SettingApi struct { Id uint `gorm:"primaryKey"` ParentId uint // 上级id Name string // api名称 Path string // api路径 CreatedAt time.Time UpdatedAt time.Time }