mirror of
https://github.com/FlourishingWorld/hk4e.git
synced 2026-02-04 18:32:26 +08:00
16 lines
568 B
Go
16 lines
568 B
Go
package model
|
|
|
|
import "go.mongodb.org/mongo-driver/bson/primitive"
|
|
|
|
type Account struct {
|
|
ID primitive.ObjectID `bson:"_id,omitempty"`
|
|
AccountID uint64 `bson:"accountID"`
|
|
Username string `bson:"username"`
|
|
Password string `bson:"password"`
|
|
PlayerID uint64 `bson:"playerID"`
|
|
Token string `bson:"token"`
|
|
ComboToken string `bson:"comboToken"`
|
|
Forbid bool `bson:"forbid"`
|
|
ForbidEndTime uint64 `bson:"forbidEndTime"`
|
|
}
|