service/dbstruct/token.go

9 lines
309 B
Go
Raw Normal View History

2023-12-21 22:17:40 +08:00
package dbstruct
type Token struct {
Id int64 `json:"id" bson:"_id"` // tokenuuid
Mid int64 `json:"mid" bson:"mid"` // 用户id
Ct int64 `json:"ct" bson:"ct"` // 创建时间
DelFlag int `json:"del_flag" bson:"del_flag"` // 删除标记0-否1-是
}