16 lines
455 B
Go
16 lines
455 B
Go
package models
|
|
|
|
import (
|
|
"time"
|
|
|
|
"go.mongodb.org/mongo-driver/v2/bson"
|
|
)
|
|
|
|
// SiteUser 前台用户(目前仅用于直播弹幕身份,与后台 users 集合分离)
|
|
type SiteUser struct {
|
|
ID bson.ObjectID `bson:"_id,omitempty" json:"id,omitempty"`
|
|
Username string `bson:"username" json:"username"`
|
|
PasswordHash string `bson:"password_hash" json:"-"`
|
|
CreatedAt time.Time `bson:"created_at" json:"created_at"`
|
|
}
|