13 lines
631 B
Go
13 lines
631 B
Go
|
package dbstruct
|
||
|
|
||
|
type VeriCode struct {
|
||
|
Id int64 `json:"id" bson:"_id"` //验证码id
|
||
|
Mid int64 `json:"mid" bson:"mid"` //用户id
|
||
|
PhoneHash string `json:"phone_hash" bson:"phone_hash"` //手机号hash值
|
||
|
VeriCode string `json:"veri_code" bson:"veri_code"` //验证码
|
||
|
Trigger string `json:"trigger" bson:"trigger"` //触发来源
|
||
|
RegionCode string `json:"region_code" bson:"region_code"` //国家编号
|
||
|
Ct int64 `json:"ct" bson:"ct"` //创建时间
|
||
|
DelFlag int64 `json:"del_flag" bson:"del_flag"` //删除标记
|
||
|
}
|