附近小店
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

134 líneas
2.8 KiB

  1. definitions:
  2. md.FastLoginRequestBody:
  3. properties:
  4. captcha:
  5. type: string
  6. card_key:
  7. description: 权益卡卡密
  8. type: string
  9. card_num:
  10. description: 权益卡卡号
  11. type: string
  12. invited_code:
  13. description: 邀请码
  14. type: string
  15. is_not_create:
  16. type: string
  17. mobile:
  18. type: string
  19. parent_uid:
  20. description: 上级ID
  21. type: string
  22. password:
  23. type: string
  24. pic_code:
  25. type: string
  26. pic_code_id:
  27. type: string
  28. return_user_msg:
  29. type: string
  30. task_id:
  31. type: string
  32. task_type:
  33. type: string
  34. type:
  35. type: string
  36. zone:
  37. type: string
  38. type: object
  39. md.LoginResponse:
  40. properties:
  41. alipay_user_id:
  42. type: string
  43. avatar:
  44. type: string
  45. bind_phone_enable:
  46. type: string
  47. check_bind_phone:
  48. type: string
  49. invite_code:
  50. type: string
  51. is_need_check_nickname:
  52. type: string
  53. is_pid:
  54. type: string
  55. jd_applet_open_id:
  56. type: string
  57. password:
  58. type: string
  59. perms:
  60. items:
  61. type: string
  62. type: array
  63. phone:
  64. type: string
  65. register_invite_code_enable:
  66. description: 邀请码跳转是否开启
  67. type: string
  68. register_invite_code_should_input:
  69. description: 邀请码是否必填
  70. type: string
  71. token:
  72. type: string
  73. user_id:
  74. type: string
  75. username:
  76. type: string
  77. wechat_applet_open_id:
  78. type: string
  79. wechat_union_id:
  80. type: string
  81. type: object
  82. md.Response:
  83. properties:
  84. code:
  85. example: 响应码
  86. type: string
  87. data:
  88. description: 内容
  89. msg:
  90. example: 具体错误原因
  91. type: string
  92. type: object
  93. host: localhost:5000
  94. info:
  95. contact:
  96. name: sherlockwhite
  97. description: 移动端接口
  98. termsOfService: 智莺生活后端组
  99. title: 智莺生活移动端接口
  100. version: "1.0"
  101. paths:
  102. /api/v1/communityTeam/agent/login:
  103. post:
  104. consumes:
  105. - application/json
  106. description: 登入
  107. parameters:
  108. - description: 请求参数
  109. in: body
  110. name: req
  111. required: true
  112. schema:
  113. $ref: '#/definitions/md.FastLoginRequestBody'
  114. produces:
  115. - application/json
  116. responses:
  117. "200":
  118. description: OK
  119. schema:
  120. $ref: '#/definitions/md.LoginResponse'
  121. "400":
  122. description: 具体错误
  123. schema:
  124. $ref: '#/definitions/md.Response'
  125. summary: 登陆
  126. tags:
  127. - 登陆
  128. securityDefinitions:
  129. MasterID:
  130. in: header
  131. name: MasterID
  132. type: apiKey
  133. swagger: "2.0"