redis.go
328 字节
package protocol
//短信类型
const (
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"`
}