劲创营---任务项目
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

md_login.go 577 B

2 주 전
123456789101112131415161718192021222324
  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. }