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