|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- definitions:
- md.FastLoginRequestBody:
- properties:
- captcha:
- type: string
- card_key:
- description: 权益卡卡密
- type: string
- card_num:
- description: 权益卡卡号
- type: string
- invited_code:
- description: 邀请码
- type: string
- is_not_create:
- type: string
- mobile:
- type: string
- parent_uid:
- description: 上级ID
- type: string
- password:
- type: string
- pic_code:
- type: string
- pic_code_id:
- type: string
- return_user_msg:
- type: string
- task_id:
- type: string
- task_type:
- type: string
- type:
- type: string
- zone:
- type: string
- type: object
- md.LoginResponse:
- properties:
- alipay_user_id:
- type: string
- avatar:
- type: string
- bind_phone_enable:
- type: string
- check_bind_phone:
- type: string
- invite_code:
- type: string
- is_need_check_nickname:
- type: string
- is_pid:
- type: string
- jd_applet_open_id:
- type: string
- password:
- type: string
- perms:
- items:
- type: string
- type: array
- phone:
- type: string
- register_invite_code_enable:
- description: 邀请码跳转是否开启
- type: string
- register_invite_code_should_input:
- description: 邀请码是否必填
- type: string
- token:
- type: string
- user_id:
- type: string
- username:
- type: string
- wechat_applet_open_id:
- type: string
- wechat_union_id:
- type: string
- type: object
- md.Response:
- properties:
- code:
- example: 响应码
- type: string
- data:
- description: 内容
- msg:
- example: 具体错误原因
- type: string
- type: object
- host: localhost:5000
- info:
- contact:
- name: sherlockwhite
- description: 移动端接口
- termsOfService: 智莺生活后端组
- title: 智莺生活移动端接口
- version: "1.0"
- paths:
- /api/v1/communityTeam/agent/login:
- post:
- consumes:
- - application/json
- description: 登入
- parameters:
- - description: 请求参数
- in: body
- name: req
- required: true
- schema:
- $ref: '#/definitions/md.FastLoginRequestBody'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/md.LoginResponse'
- "400":
- description: 具体错误
- schema:
- $ref: '#/definitions/md.Response'
- summary: 登陆
- tags:
- - 登陆
- securityDefinitions:
- MasterID:
- in: header
- name: MasterID
- type: apiKey
- swagger: "2.0"
|