You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
556 B
17 lines
556 B
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"`
|
|
}
|
|
|