redis.go 428 字节
package protocol

//短信类型
const (
	SmsCode         = "sms_code"
	SmsLoginCode    = "sms_login_code"
	SmsChangeMobile = "sms_change_mobile"
)

type SmsInfo struct {
	Code       string `json:"code"`
	Count      int    `json:"count"`
	ErrorCount int    `json:"error_count"`
	LastTime   int64  `json:"last_time"`
	CreateTime int64  `json:"create_time"`
	//Checked    int    `json:"checked"` //0:未校验证  1:已校验
}