附近小店
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

14 行
281 B

  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. }