2024-07-18 14:19:02 +08:00

12 lines
341 B
Go

package requests
type PublicRequest struct {
GetPhoneCode // 获取手机验证码
}
// GetPhoneCode 获取手机验证码
type GetPhoneCode struct {
Phone string `json:"phone" form:"phone" label:"手机号" validate:"required,Mobile"`
Scene int `json:"scene" form:"scene" label:"场景值" validate:"required,number,min=1,max=1"`
}