Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
12345678910111213 |
- package md
-
- type FastLoginRequestBody struct {
- Mobile string `json:"mobile"`
- Password string `json:"password"`
- }
-
- type LoginResponse struct {
- Token string `json:"token"`
- UserID string `json:"user_id"`
- Phone string `json:"phone"`
- UserName string `json:"username"`
- }
|