get:
  tags:
    - 用户
  summary: 用户信息
  security:
    - auth-token: []
  parameters:
    - in: path
      name: id
      required: true
      schema:
        tyep: integer
      description: 用户ID

  responses:
    allOf:
      - "x-200-Success":
          content:
            application/json:
              schema:
                properties:
                  data:
                    $ref: "../schemas/userItem.yaml"
      - $ref: "../businesscode/x-200-Success.yaml"
      - $ref: "../businesscode/x-401-Unauthorized.yaml"
