mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-18 01:06:39 +08:00
12 lines
189 B
Go
12 lines
189 B
Go
package model
|
|
|
|
import "time"
|
|
|
|
type AdminRole struct {
|
|
Id int `gorm:"primarykey;column:id"`
|
|
Name string
|
|
Description string
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
}
|