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-是 }