28 lines
729 B
Go
28 lines
729 B
Go
package model
|
||
|
||
import (
|
||
"admin/internal/db"
|
||
"time"
|
||
)
|
||
|
||
func init() {
|
||
db.RegisterTableModels(Account{})
|
||
}
|
||
|
||
// Account 空表,就是用来兼容资源增删改查公共操作的,实际列举账号等都是走各个项目api拉取
|
||
type Account struct {
|
||
Account string `name:"账号" json:"account"`
|
||
ServerConfId string `name:"区服id" json:"serveId"`
|
||
RoleIds []string `gorm:"type:json;serializer:json" name:"角色id列表" json:"roleIds"`
|
||
LatestLoginTime time.Time `name:"最近登录时间" json:"latest_login_time"`
|
||
CreateTime time.Time `name:"创建时间" json:"create_time"`
|
||
}
|
||
|
||
func (lm *Account) TableName() string {
|
||
return "account"
|
||
}
|
||
|
||
func (m *Account) GetId() int {
|
||
return 0
|
||
}
|