广告平台(站长使用)
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

14 行
491 B

  1. package md
  2. type RegisterForMediumReq struct {
  3. Phone string `json:"phone" binding:"required" example:"登录账号"`
  4. PassWord string `json:"password" binding:"required" example:"登录密码"`
  5. Code string `json:"code" example:"验证码"`
  6. }
  7. type RegisterForAgentReq struct {
  8. Phone string `json:"phone" binding:"required" example:"登录账号"`
  9. PassWord string `json:"password" binding:"required" example:"登录密码"`
  10. Code string `json:"code" example:"验证码"`
  11. }