7 lines
202 B
Go
7 lines
202 B
Go
|
package dbstruct
|
||
|
|
||
|
type VeriCodeWrongTimes struct {
|
||
|
Id int64 `json:"id" bson:"_id"` //id,用户的mid
|
||
|
WrongTimes int64 `json:"wrong_times" bson:"wrong_times"` //错误次数
|
||
|
}
|