mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-17 16:56:38 +08:00
12 lines
178 B
Go
12 lines
178 B
Go
package model
|
|
|
|
import "time"
|
|
|
|
type AdminUserRole struct {
|
|
Id int `gorm:"primarykey;column:id"`
|
|
AdminId uint
|
|
RoleId int
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
}
|