service.xpcool.com/internal/model/do/admin_menu.go

27 lines
804 B
Go

// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package do
import (
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gtime"
)
// AdminMenu is the golang structure of table admin_menu for DAO operations like Where/Data.
type AdminMenu struct {
g.Meta `orm:"table:admin_menu, do:true"`
Id any //
ParentId any //
Name any //
Type any // 1 menu,2 api
Path any //
Permission any //
Sort any //
Status any //
CreatedAt *gtime.Time //
UpdatedAt *gtime.Time //
DeletedAt *gtime.Time //
}