# 人工收费离场

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /app_clientv1.Stoping/chargeLeave:
    post:
      summary: 人工收费离场
      deprecated: false
      description: |-
        人工收费离场（在特殊情况下人工介入设备端，如收现金）

        1. 人工操作设备，设置已收费金额，设备上报云端
        2. 云端执行离场操作
        3. 云端创建已完成支付的支付单
      tags:
        - client 停车场设备端 📟/v1/Stoping
        - client
      parameters:
        - name: X-Client
          in: header
          description: ''
          required: true
          example: '{{x_client}}'
          schema:
            type: string
        - name: X-ApifoxUser
          in: header
          description: ''
          required: true
          example: '{{apifox_user}}'
          schema:
            type: string
        - name: X-Time
          in: header
          description: ''
          required: true
          example: '{{timestamp}}'
          schema:
            type: string
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                car_number:
                  description: 车牌号
                  example: ''
                  type: string
                export_time:
                  description: 出场时间
                  example: 0
                  type: integer
                export_passageway_id:
                  description: 出场通道id
                  example: 0
                  type: integer
                money:
                  description: 金额
                  example: 0
                  type: number
              required:
                - car_number
                - export_time
                - export_passageway_id
                - money
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    x-apifox-orders: []
                  msg:
                    type: string
                  code:
                    type: integer
                required:
                  - data
                  - msg
                  - code
                x-apifox-orders:
                  - data
                  - msg
                  - code
              examples:
                '1':
                  summary: success
                  value:
                    data: {}
                    msg: ''
                    code: 1
                '2':
                  summary: error
                  value:
                    data: {}
                    msg: err msg
                    code: 0
          headers: {}
          x-apifox-name: ok
      security: []
      x-apifox-folder: client 停车场设备端 📟/v1/Stoping
      x-apifox-status: developing
      x-run-in-apifox: https://app.apifox.com/web/project/2493394/apis/api-70863828-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: http://admin.api.test.domain.cn
    description: 测试环境
security: []

```
