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.
11 lines
400 B
11 lines
400 B
package request
|
|
|
|
type SendMessage struct {
|
|
Phone string `form:"phone"`
|
|
Type int `form:"type"` //1:登录验证码 2-解绑 3-绑定 4-提现
|
|
CountryCode string `json:"country_code" form:"country_code" gorm:"size:255"` //用户手机号国家代码 国际区号 86 中国 1美国
|
|
}
|
|
|
|
type SendEmail struct {
|
|
Email string `form:"email"`
|
|
}
|
|
|