service/dbstruct/token.go

9 lines
309 B
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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