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.
|
- package md
-
- type LoginReq struct {
- Phone string `json:"phone"`
- Password string `json:"password"`
- }
- type SmsReq struct {
- Phone string `json:"phone"`
- Type string `json:"type"`
- }
- type Register struct {
- Mobile string `json:"mobile"`
- Captcha string `json:"captcha"`
- Type string `json:"type"`
- Zone string `json:"zone"`
- PicCode string `json:"pic_code"`
- PicCodeId string `json:"pic_code_id"`
- }
- type RegisterReq struct {
- Phone string `json:"phone"`
- Password string `json:"password"`
- Captcha string `json:"captcha"`
- Type string `json:"type"`
- }
|