mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 07:50:25 +08:00
18 lines
246 B
Go
18 lines
246 B
Go
package model
|
|
|
|
type LoginAccount struct {
|
|
Id uint64
|
|
Username string
|
|
Token string
|
|
}
|
|
|
|
func (la *LoginAccount) GetAesKey() string {
|
|
return la.Token[:24]
|
|
}
|
|
|
|
// 系统账号
|
|
var SysAccount = &LoginAccount{
|
|
Id: 0,
|
|
Username: "-",
|
|
}
|