// Code generated by gorm.io/gen. DO NOT EDIT. // Code generated by gorm.io/gen. DO NOT EDIT. // Code generated by gorm.io/gen. DO NOT EDIT. package model const TableNameAdminRoleMenu = "admin_role_menu" // AdminRoleMenu mapped from table type AdminRoleMenu struct { ID int32 `gorm:"column:id;primaryKey;autoIncrement:true" json:"id"` RoleID int32 `gorm:"column:role_id;not null" json:"role_id"` SystemID int32 `gorm:"column:system_id;not null" json:"system_id"` PageID int32 `gorm:"column:page_id;not null" json:"page_id"` } // TableName AdminRoleMenu's table name func (*AdminRoleMenu) TableName() string { return TableNameAdminRoleMenu }