package request // type SendMessage struct { // PhoneCode string `json:"phone_code" form:"phone_code"` //国际区号 // Phone string `json:"phone" form:"phone"` //手机号 // Type int `json:"type" form:"type"` //1:登录验证码 2-解绑 3-绑定 4-提现 // } type SendMessage struct { Phone string `form:"phone"` Type int `form:"type"` //1:登录验证码 2-解绑 3-绑定 4-提现 PhoneCode string `json:"phone_code"` //phone_code } type SendEmail struct { Email string `form:"email"` }