mirror of
https://github.com/xinliangnote/go-gin-api.git
synced 2024-04-21 12:31:46 +00:00
14 lines
344 B
Go
Executable File
14 lines
344 B
Go
Executable File
package admin_menu
|
|
|
|
import "time"
|
|
|
|
// AdminMenu 管理员菜单栏表
|
|
//go:generate gormgen -structs AdminMenu -input .
|
|
type AdminMenu struct {
|
|
Id int32 // 主键
|
|
AdminId int32 // 管理员ID
|
|
MenuId int32 // 菜单栏ID
|
|
CreatedAt time.Time `gorm:"time"` // 创建时间
|
|
CreatedUser string // 创建人
|
|
}
|