mirror of
https://github.com/MirageNetwork/MirageServer.git
synced 2025-09-26 20:41:34 +08:00
9 lines
131 B
Go
9 lines
131 B
Go
package controller
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
type SysAdmin struct {
|
|
gorm.Model
|
|
AdminCredential AdminCredential `gorm:"not null"`
|
|
}
|