You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
237 B
Go

package param
// SendSmsCode 获取短信验证码入参
type SendSmsCode struct {
Phone string `json:"phone" form:"phone" binding:"required"` // 手机号
Key string `json:"key" form:"key" binding:"required"` // 验证码key
}