广告平台(站长使用)
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

md_register.go 491 B

před 1 měsícem
12345678910111213
  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. }