劲创营---任务项目
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

25 lignes
577 B

  1. package md
  2. type LoginReq struct {
  3. Phone string `json:"phone"`
  4. Password string `json:"password"`
  5. }
  6. type SmsReq struct {
  7. Phone string `json:"phone"`
  8. Type string `json:"type"`
  9. }
  10. type Register struct {
  11. Mobile string `json:"mobile"`
  12. Captcha string `json:"captcha"`
  13. Type string `json:"type"`
  14. Zone string `json:"zone"`
  15. PicCode string `json:"pic_code"`
  16. PicCodeId string `json:"pic_code_id"`
  17. }
  18. type RegisterReq struct {
  19. Phone string `json:"phone"`
  20. Password string `json:"password"`
  21. Captcha string `json:"captcha"`
  22. Type string `json:"type"`
  23. }