|
123456789101112131415161718192021222324 |
- 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"`
- }
|