附近小店
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

login.go 281 B

10 달 전
12345678910111213
  1. package md
  2. type FastLoginRequestBody struct {
  3. Mobile string `json:"mobile"`
  4. Password string `json:"password"`
  5. }
  6. type LoginResponse struct {
  7. Token string `json:"token"`
  8. UserID string `json:"user_id"`
  9. Phone string `json:"phone"`
  10. UserName string `json:"username"`
  11. }