开放平台 / 车场管理 / 5.1 车费

5.1 车费

5.1.1 获取车辆欠费信息


(1) 方法:
路径:/api/parking/receive

类型:GET接口

(2) 接口参数
参数 说明 类型 是否必须
access_token 访问权限 String Y
current 起始页,默认1 String Y
rowCount 每页容量,默认10 String Y
projectId :String   项目id

(3) 返回结果
{
  "code": 1,
  "data": {
     "current": 1,    
      "rowCount": 100,    
     Pages:3    总页数
      "total": 300,  总数     
       "rows": [   
         {   

        gid int 车场编号

        plate string 车牌 备注:车牌和卡号至少必须填一个(下同)

        start_time long 起始时间

        end_time long 结束时间

        sum int 计费金额分


        },
     ], 
  }
  "msg": "成功",  
  "result": "success", 
  "success": true 


5.1.2 车辆缴费


(1) 方法:
路径:/api/parking/pay

类型:GET接口

(2) 接口参数
参数 说明 类型 是否必须
access_token 访问权限 String Y
current 起始页,默认1 String Y
rowCount 每页容量,默认10 String Y
projectId :String   项目id

(3) 返回结果
{
  "code": 1,
  "data": {
     "current": 1,    
      "rowCount": 100,    
     Pages:3    总页数
      "total": 300,  总数     
       "rows": [   
         {   

        gid int 车场编号

        plate string 车牌 备注:车牌和卡号至少必须填一个(下同)

        start_time long 起始时间

        end_time long 结束时间

        sum int 计费金额分

        pcode int 支付类型码128为支付宝、129为微信、130为银联在线

        createTime string 创建时间


        },
     ], 
  }
  "msg": "成功",  
  "result": "success", 
  "success": true