25 lines
1.4 KiB
Go
25 lines
1.4 KiB
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// AdminMenu is the golang structure for table admin_menu.
|
|
type AdminMenu struct {
|
|
Id uint64 `json:"id" orm:"id" description:""` //
|
|
ParentId uint64 `json:"parentId" orm:"parent_id" description:""` //
|
|
Name string `json:"name" orm:"name" description:""` //
|
|
Type int `json:"type" orm:"type" description:"1 menu,2 api"` // 1 menu,2 api
|
|
Path string `json:"path" orm:"path" description:""` //
|
|
Permission string `json:"permission" orm:"permission" description:""` //
|
|
Sort int `json:"sort" orm:"sort" description:""` //
|
|
Status int `json:"status" orm:"status" description:""` //
|
|
CreatedAt *gtime.Time `json:"createdAt" orm:"created_at" description:""` //
|
|
UpdatedAt *gtime.Time `json:"updatedAt" orm:"updated_at" description:""` //
|
|
DeletedAt *gtime.Time `json:"deletedAt" orm:"deleted_at" description:""` //
|
|
}
|