[关闭]
@zushuxin 2017-08-30T04:10:17.000000Z 字数 18042 阅读 416

logo

北京停简单信息技术有限公司
xlshlr

停简单-B端管理平台对账中心接口文档

约定

接口如无特殊说明,遵照以下规范。

1. 参数时间格式约定:"yyyyMMdd",查询时间区间,前后都包含
2. 返回值时间格式约定: "yyyy-MM-dd HH:mm:ss SSS"、"yyyy-MM-dd HH:mm:ss"、"yyyy-MM-dd"、"HH:mm:ss"
3. 返回金额单位都是元
4. 普通接口请求参数格式都必须json,下载excel的接口参数使用form提交
5. 需要分页时,分页参数start、limit都必须传递,传递一个不会分页

常用变量描述

  1. businessOrderType:
    PARK("001", "临停业务", "1", "临停订单", "0", "停车场余额收入"),
    RENT_PARK("002", "长租业务", "f", "长租订单", "0", "停车场余额收入"),
    OM_PAY("003", "代收业务", "h", "代收订单", "0", "停车场余额收入"),
    QR_CODE("007", "扫码业务", "a", "扫码订单", "0", "停车场余额收入"),
    SBDK("006", "设备抵扣时长业务", "k", "设备抵扣时长订单", "1", "停车场余额支出"),
    DRAW_MONEY("008", "提现业务", "4", "提现订单", "1", "停车场余额支出"),
    PM_REVERSE("009", "冲账业务", "l", "冲账订单", "1", "停车场余额支出");
  2. payState:
    UN_PAY("0", "未付款"),
    PAYED("1", "已付款(待确认)"),
    SUCCESS("2", "支付成功"),
    FAILURE("3", "支付失败");
  3. checkState:
    ToAudit("0", "待审核(提交)"),
    Audited("2","已审核"),
    Rejected("3","驳回");

查询停简单待结算金额

参数 类型 长度 是否必须 名称 备注
pmParkId string Y 停车场ID
businessType string N 业务类型

* 响应参数列表

参数 类型 长度 是否必须 名称 备注
timestamp string Y 响应时间
isSuccess string Y 请求是否成功 0成功,1失败
msg string 响应描述
allAmount string 汇总金额 单位:元
unSettleList array{object} 待结算信息列表
businessType string 业务类型
amount string 待结算金额 单位:元

* 响应参数事例:

  1. {
  2. "timestamp": "2017-05-11 16:00:38 255",
  3. "isSuccess": "0",
  4. "allAmount": "400.00",
  5. "unSettleList": [
  6. {
  7. "businessType": "001",
  8. "amount": "100.00"
  9. },
  10. {
  11. "businessType": "002",
  12. "amount": "100.00"
  13. },
  14. {
  15. "businessType": "003",
  16. "amount": "100.00"
  17. },
  18. {
  19. "businessType": "007",
  20. "amount": "100.00"
  21. }
  22. ]
  23. }

查询停简单待结算金额汇总

参数 类型 长度 是否必须 名称 备注
pmParkIds array{object} Y 停车场ID列表 格式:["123","234"]

* 响应参数列表

参数 类型 长度 是否必须 名称 备注
timestamp string Y 响应时间
isSuccess string Y 请求是否成功 0成功,1失败
msg string 响应描述
allAmount string 汇总金额 单位:元

* 响应参数事例:

  1. {
  2. "timestamp": "2017-05-11 16:00:38 255",
  3. "isSuccess": "0",
  4. "allAmount": "400.00"
  5. }

查询最近一次结算信息,支持分页

参数 类型 长度 是否必须 名称 备注
pmParkIds array{object} Y 停车场ID列表 格式:["123","234"]
businessType string N 业务类型
start string N 分页参数,数据开始位置
limit string N 分页参数,数据结束位置

* 响应参数列表

参数 类型 长度 是否必须 名称 备注
timestamp string Y 响应时间
isSuccess string Y 请求是否成功 0成功,1失败
msg string 响应描述
totalCount string 记录总条数
settleList array{object} 结算信息列表
amSettleSummaryId string Y 结算订单id
businessType string Y 业务类型
pmParkId string 停车场id
parkName string 停车场名称
accountName string 结算账户名
accountNo string 结算账号
bankName string 结算银行
checkStartDt string 核算开始日期
checkEndDt string 核算截止日期
createDt string 创建日期
checkDt string 审核日期
payDt string 支付日期
successDt string 完成日期
allAmount string 结算金额 单位:元
drawAmount string 到账金额 单位:元
checkState string 审核状态
payState string 交易状态
  1. {
  2. "timestamp": "2017-05-11 16:00:38 255",
  3. "isSuccess": "0",
  4. "totalCount": "2",
  5. "settleList": [
  6. {
  7. "amSettleSummaryId": "123",
  8. "businessType": "001",
  9. "pmParkId": "111",
  10. "parkName": "233",
  11. "accountName": "北京山水文园物业管理服务有限公司",
  12. "accountNo": "110060900018000904419",
  13. "bankName": "交通银行",
  14. "checkStartDt": "2017-04-12 00:00:00",
  15. "checkEndDt": "2017-04-13 00:00:00",
  16. "createDt": "2017-04-15 00:00:00",
  17. "checkDt": "2017-04-15 00:00:00",
  18. "payDt": "2017-04-15 00:00:00",
  19. "successDt": "2017-04-15 00:00:00",
  20. "allAmount": "100.00",
  21. "drawAmount": "100.00",
  22. "checkState": "2",
  23. "payState": "2"
  24. },
  25. {
  26. "amSettleSummaryId": "1233",
  27. "businessType": "002",
  28. "pmParkId": "111",
  29. "parkName": "233",
  30. "accountName": "北京山水文园物业管理服务有限公司",
  31. "accountNo": "110060900018000904419",
  32. "bankName": "交通银行",
  33. "checkStartDt": "2017-04-12 00:00:00",
  34. "checkEndDt": "2017-04-13 00:00:00",
  35. "createDt": "2017-04-15 00:00:00",
  36. "checkDt": "2017-04-15 00:00:00",
  37. "payDt": "2017-04-15 00:00:00",
  38. "successDt": "2017-04-15 00:00:00",
  39. "allAmount": "100.00",
  40. "drawAmount": "100.00",
  41. "checkState": "2",
  42. "payState": "2"
  43. }
  44. ]
  45. }

查询设备抵扣时长统计

参数 类型 长度 是否必须 名称 备注
pmParkId string Y 停车场ID

* 响应参数列表

参数 类型 长度 是否必须 名称 备注
timestamp string Y 响应时间
isSuccess string Y 请求是否成功 0成功,1失败
msg string 响应描述
gainShareInfo map{object} 抵扣时长信息 返回null表示该停车场无该业务
percent string 兑换比例 给停简单的比例
maxAmount string 总兑换金额 单位:元
recvAmount string 已兑换金额 单位:元
remainAmount string 未兑换金额 单位:元

* 响应参数事例:

  1. {
  2. "timestamp": "2017-05-11 16:00:38 255",
  3. "isSuccess": "0",
  4. "gainShareInfo": {
  5. "percent": "20%",
  6. "maxAmount": "100.00",
  7. "recvAmount": "100.00",
  8. "remainAmount": "0.00"
  9. }
  10. }

查询设备抵扣时长明细列表,支持分页

参数 类型 长度 是否必须 名称 备注
startDate string Y 开始时间
endDate string Y 结束时间
pmParkId string Y 停车场ID
start string N 分页参数,数据开始位置
limit string N 分页参数,数据结束位置

* 响应参数列表

参数 类型 长度 是否必须 名称 备注
timestamp string Y 响应时间
isSuccess string Y 请求是否成功 0成功,1失败
msg string 响应描述
totalCount string 记录总条数
gainShareDetailList array{object} 兑换明细列表
allAmount string 结算金额 单位:元
shareAmount string 设备抵扣时长金额 单位:元
shareDate string 兑换日期

* 响应参数事例:

  1. {
  2. "timestamp": "2017-05-11 16:00:38 255",
  3. "isSuccess": "0",
  4. "totalCount": "3",
  5. "gainShareDetailList": [
  6. {
  7. "allAmount": "200",
  8. "shareAmount": "20",
  9. "shareDate": "2017-05-11 16:00:38"
  10. },
  11. {
  12. "allAmount": "200",
  13. "shareAmount": "20",
  14. "shareDate": "2017-05-11 16:00:38"
  15. },
  16. {
  17. "allAmount": "200",
  18. "shareAmount": "20",
  19. "shareDate": "2017-05-11 16:00:38"
  20. }
  21. ]
  22. }

查询在线对账协议列表

参数 类型 长度 是否必须 名称 备注
pmParkId string Y 停车场ID
businessType string N 业务类型

* 响应参数列表

参数 类型 长度 是否必须 名称 备注
timestamp string Y 响应时间
isSuccess string Y 请求是否成功 0成功,1失败
msg string 响应描述
pmSetcheckList array{object} 对账协议列表
pmParkId string 停车场ID
parkName string 停车场名称
businessType string 业务类型
cycle string 结算周期 按天(0)、周(1)、月(2)
reconcileDate string 结算日 只对按月有效
stedTime string 每日结算起止时间,即从000000-000000 hhmmss格式
chargePercent string 手续费比例 千分之X
chargeAmount string 手续费固定金额 单位:元
verifyStatus string 审核状态 1、新录入 2、待审核 3、已审核 4、已驳回
phone string 对账手机号
email string 对账邮箱
accountName string 结算账户名
accountNo string 结算账号
bankName string 结算银行
branchBank string 开户行
payeeType string 账户类型 对公对私,0对公,1对私
province string 银行卡所属省份
city string 银行卡所属城市
  1. {
  2. "timestamp": "2017-05-11 16:00:38 255",
  3. "isSuccess": "0",
  4. "pmSetcheckList": [
  5. {
  6. "pmParkId": "123",
  7. "parkName": "测试停车",
  8. "businessType": "001",
  9. "cycle": "0",
  10. "reconcileDate": "",
  11. "stedTime": "000000",
  12. "chargePercent": "0.00",
  13. "chargeAmount": "0.00",
  14. "phone": "13601255456",
  15. "email": "xlshlr@163.com",
  16. "accountName": "北京山水文园物业管理服务有限公司",
  17. "accountNo": "110060900018000904419",
  18. "bankName": "交通银行",
  19. "branchBank": "交通银行北京房山支行",
  20. "payeeType": "1",
  21. "province": "北京市",
  22. "city": "北京市",
  23. "verifyStatus": "3"
  24. },
  25. {
  26. "pmParkId": "123",
  27. "parkName": "测试停车",
  28. "businessType": "007",
  29. "cycle": "1",
  30. "reconcileDate": "",
  31. "stedTime": "000000",
  32. "chargePercent": "0.00",
  33. "chargeAmount": "0.00",
  34. "phone": "13601255456",
  35. "email": "xlshlr@163.com",
  36. "accountName": "北京山水文园物业管理服务有限公司",
  37. "accountNo": "110060900018000904419",
  38. "bankName": "交通银行",
  39. "branchBank": "交通银行北京房山支行",
  40. "payeeType": "1",
  41. "province": "北京市",
  42. "city": "北京市",
  43. "verifyStatus": "3"
  44. },
  45. {
  46. "pmParkId": "123",
  47. "parkName": "测试停车",
  48. "businessType": "003",
  49. "cycle": "2",
  50. "reconcileDate": "1",
  51. "stedTime": "000000",
  52. "chargePercent": "0.00",
  53. "chargeAmount": "0.00",
  54. "phone": "13601255456",
  55. "email": "xlshlr@163.com",
  56. "accountName": "北京山水文园物业管理服务有限公司",
  57. "accountNo": "110060900018000904419",
  58. "bankName": "交通银行",
  59. "branchBank": "交通银行北京房山支行",
  60. "payeeType": "1",
  61. "province": "北京市",
  62. "city": "北京市",
  63. "verifyStatus": "3"
  64. }
  65. ]
  66. }

查询在线对账协议明细

参数 类型 长度 是否必须 名称 备注
pmParkId string Y 停车场ID
businessType string Y 业务类型

* 响应参数列表

参数 类型 长度 是否必须 名称 备注
timestamp string Y 响应时间
isSuccess string Y 请求是否成功 0成功,1失败
msg string 响应描述
pmParkId string 停车场ID
parkName string 停车场名称
businessType string 业务类型
cycle string 结算周期 按天(0)、周(1)、月(2)
reconcileDate string 结算日 只对按月有效
stedTime string 每日结算起止时间,即从000000-000000 hhmmss格式
chargePercent string 手续费比例 千分之X
chargeAmount string 手续费固定金额 单位:元
verifyStatus string 审核状态 1、新录入 2、待审核 3、已审核 4、已驳回
phone string 对账手机号
email string 对账邮箱
accountName string 结算账户名
accountNo string 结算账号
bankName string 结算银行
branchBank string 开户行
payeeType string 账户类型 对公对私,0对公,1对私
province string 银行卡所属省份
city string 银行卡所属城市

* 响应参数事例:

  1. {
  2. "timestamp": "2017-05-11 16:00:38 255",
  3. "isSuccess": "0",
  4. "pmParkId": "123",
  5. "parkName": "测试停车",
  6. "businessType": "001",
  7. "cycle": "0",
  8. "reconcileDate": "",
  9. "stedTime": "000000",
  10. "chargePercent": "0.00",
  11. "chargeAmount": "0.00",
  12. "phone": "13601255456",
  13. "email": "xlshlr@163.com",
  14. "accountName": "北京山水文园物业管理服务有限公司",
  15. "accountNo": "110060900018000904419",
  16. "bankName": "交通银行",
  17. "branchBank": "交通银行北京房山支行",
  18. "payeeType": "1",
  19. "province": "北京市",
  20. "city": "北京市",
  21. "verifyStatus": "3"
  22. }

查询停简单结算各项汇总

参数 类型 长度 是否必须 名称 备注
startDate string N 开始时间
endDate string N 结束时间
pmParkId string Y 停车场ID
businessType string N 业务类型

* 响应参数列表

参数 类型 长度 是否必须 名称 备注
timestamp string Y 响应时间
isSuccess string Y 请求是否成功 0成功,1失败
msg string 响应描述
drawAmount string 到账金额 单位:元
drawCount string 到账数量 单位:笔
poundageAmount string 手续费金额 单位:元
poundageCount string 手续费数量 单位:笔
reverseAmount string 冲账金额 单位:元
reverseCount string 冲账数量 单位:笔
gainshareAmount string 设备抵扣时长金额 单位:元
gainshareCount string 设备抵扣时长数量 单位:笔
selfAmount string 自营金额 单位:元
selfCount string 自营数量 单位:笔

* 响应参数事例:

  1. {
  2. "timestamp": "2017-05-11 16:00:38 255",
  3. "isSuccess": "0",
  4. "drawAmount": "100.00",
  5. "drawCount": "10",
  6. "poundageAmount": "100.00",
  7. "poundageCount": "10",
  8. "reverseAmount": "100.00",
  9. "reverseCount": "10",
  10. "gainshareAmount": "100.00",
  11. "gainshareCount": "10",
  12. "selfAmount": "100.00",
  13. "selfCount": "10"
  14. }

查询停简单结算列表,支持分页

参数 类型 长度 是否必须 名称 备注
startDate string N 开始时间
endDate string N 结束时间
pmParkId string Y 停车场ID
businessType string 下载excel时必传 业务类型
start string N 分页参数,数据开始位置 下载excel时无效,不必传递
limit string N 分页参数,数据结束位置 下载excel时无效,不必传递

* 响应参数列表

参数 类型 长度 是否必须 名称 备注
timestamp string Y 响应时间
isSuccess string Y 请求是否成功 0成功,1失败
msg string 响应描述
totalCount string 记录总条数
settleList array{object} 结算信息列表
amSettleSummaryId string Y 结算订单id
businessType string Y 业务类型
pmParkId string 停车场id
parkName string 停车场名称
accountName string 结算账户名
accountNo string 结算账号
bankName string 结算银行
checkStartDt string 核算开始日期
checkEndDt string 核算截止日期
createDt string 创建日期
checkDt string 审核日期
payDt string 支付日期
successDt string 完成日期
allAmount string 结算金额 单位:元
poundageAmount string 手续费金额 单位:元
reverseAmount string 冲账金额 单位:元
gainshareAmount string 设备抵扣时长金额 单位:元
selfAmount string 自营金额 单位:元
drawAmount string 到账金额 单位:元
checkState string 审核状态
payState string 交易状态
  1. {
  2. "timestamp": "2017-05-11 16:00:38 255",
  3. "isSuccess": "0",
  4. "totalCount": "2",
  5. "settleList": [
  6. {
  7. "amSettleSummaryId": "123",
  8. "businessType": "001",
  9. "pmParkId": "111",
  10. "parkName": "233",
  11. "accountName": "北京山水文园物业管理服务有限公司",
  12. "accountNo": "110060900018000904419",
  13. "bankName": "交通银行",
  14. "checkStartDt": "2017-04-12 00:00:00",
  15. "checkEndDt": "2017-04-13 00:00:00",
  16. "createDt": "2017-04-15 00:00:00",
  17. "checkDt": "2017-04-15 00:00:00",
  18. "payDt": "2017-04-15 00:00:00",
  19. "successDt": "2017-04-15 00:00:00",
  20. "allAmount": "100.00",
  21. "poundageAmount": "100.00",
  22. "reverseAmount": "100.00",
  23. "gainshareAmount": "100.00",
  24. "selfAmount": "0.00",
  25. "drawAmount": "100.00",
  26. "checkState": "2",
  27. "payState": "2"
  28. },
  29. {
  30. "amSettleSummaryId": "1233",
  31. "businessType": "002",
  32. "pmParkId": "111",
  33. "parkName": "233",
  34. "accountName": "北京山水文园物业管理服务有限公司",
  35. "accountNo": "110060900018000904419",
  36. "bankName": "交通银行",
  37. "checkStartDt": "2017-04-12 00:00:00",
  38. "checkEndDt": "2017-04-13 00:00:00",
  39. "createDt": "2017-04-15 00:00:00",
  40. "checkDt": "2017-04-15 00:00:00",
  41. "payDt": "2017-04-15 00:00:00",
  42. "successDt": "2017-04-15 00:00:00",
  43. "allAmount": "100.00",
  44. "poundageAmount": "100.00",
  45. "reverseAmount": "100.00",
  46. "gainshareAmount": "100.00",
  47. "selfAmount": "0.00",
  48. "drawAmount": "100.00",
  49. "checkState": "2",
  50. "payState": "2"
  51. }
  52. ]
  53. }

查询一条结算信息的冲账明细,支持分页

参数 类型 长度 是否必须 名称 备注
amSettleSummaryId string Y 结算订单id
start string N 分页参数,数据开始位置 下载excel时无效,不必传递
limit string N 分页参数,数据结束位置 下载excel时无效,不必传递

* 响应参数列表

参数 类型 长度 是否必须 名称 备注
timestamp string Y 响应时间
isSuccess string Y 请求是否成功 0成功,1失败
msg string 响应描述
totalCount string 记录总条数
reverseDetailList array{object} 冲账明细列表
reverseAmount string 需冲账金额 单位:元
remainAmount string 剩余冲账金额 单位:元
amount string 本次冲账金额 单位:元
content string 冲账原因
  1. {
  2. "timestamp": "2017-05-11 16:00:38 255",
  3. "isSuccess": "0",
  4. "totalCount": "2",
  5. "reverseDetailList": [
  6. {
  7. "reverseAmount": "100.00",
  8. "remainAmount": "50.00",
  9. "amount": "50.00",
  10. "content": "冲账原因"
  11. },
  12. {
  13. "reverseAmount": "100.00",
  14. "remainAmount": "50.00",
  15. "amount": "50.00",
  16. "content": "冲账原因"
  17. }
  18. ]
  19. }

查询停简单临停结算信息明细列表,支持分页

参数 类型 长度 是否必须 名称 备注
amSettleSummaryId string Y 核算汇总id
start string N 分页参数,数据开始位置 下载excel时无效,不必传递
limit string N 分页参数,数据结束位置 下载excel时无效,不必传递

* 响应参数列表

参数 类型 长度 是否必须 名称 备注
timestamp string Y 响应时间
isSuccess string Y 请求是否成功 0成功,1失败
msg string 响应描述
totalCount string 记录总条数
orderList array{object} 订单列表
orderId string 订单流水号
carNum string 车牌号
inDt string 进场时间
outDt string 出场时间
receiveDt string 云端订单接收时间
isReissue string 是否补发订单 0是1否
allAmount string 停车总金额
settleAmount string 结算金额
  1. {
  2. "timestamp": "2017-05-11 16:00:38 255",
  3. "isSuccess": "0",
  4. "totalCount": "2",
  5. "orderList": [
  6. {
  7. "orderId": "123",
  8. "carNum": "京A12345",
  9. "inDt": "2017-04-12 00:00:00",
  10. "outDt": "2017-04-13 00:00:00",
  11. "receiveDt": "2017-04-15 00:00:00",
  12. "isReissue": "1",
  13. "allAmount": "100.00",
  14. "settleAmount": "100.00"
  15. },
  16. {
  17. "orderId": "1223",
  18. "carNum": "京A12345",
  19. "inDt": "2017-04-12 00:00:00",
  20. "outDt": "2017-04-13 00:00:00",
  21. "receiveDt": "2017-04-15 00:00:00",
  22. "isReissue": "1",
  23. "allAmount": "100.00",
  24. "settleAmount": "100.00"
  25. }
  26. ]
  27. }

查询停简单长租结算信息明细列表,支持分页

参数 类型 长度 是否必须 名称 备注
amSettleSummaryId string Y 核算汇总id
start string N 分页参数,数据开始位置 下载excel时无效,不必传递
limit string N 分页参数,数据结束位置 下载excel时无效,不必传递

* 响应参数列表

参数 类型 长度 是否必须 名称 备注
timestamp string Y 响应时间
isSuccess string Y 请求是否成功 0成功,1失败
msg string 响应描述
totalCount string 记录总条数
orderList array{object} 订单列表
orderId string 订单流水号
productName string 产品名称
userName string 用户名称
phone string 用户手机号
carNum string 车牌号
startDt string 开始时间
endDt string 结束时间
allAmount string 总金额
settleAmount string 结算金额
shareAmount string 分成金额

* 响应参数事例:

  1. {
  2. "timestamp": "2017-05-11 16:00:38 255",
  3. "isSuccess": "0",
  4. "totalCount": "2",
  5. "orderList": [
  6. {
  7. "orderId": "123",
  8. "productName": "123",
  9. "userName": "123",
  10. "phone": "13601245656",
  11. "carNum": "京A12345",
  12. "startDt": "2017-04-12 00:00:00",
  13. "endDt": "2017-04-13 00:00:00",
  14. "allAmount": "100.00",
  15. "settleAmount": "100.00",
  16. "shareAmount": "0.00"
  17. },
  18. {
  19. "orderId": "1223",
  20. "productName": "123",
  21. "userName": "1233",
  22. "phone": "13601245656",
  23. "carNum": "京A12345",
  24. "startDt": "2017-04-12 00:00:00",
  25. "endDt": "2017-04-13 00:00:00",
  26. "allAmount": "100.00",
  27. "settleAmount": "100.00",
  28. "shareAmount": "0.00"
  29. }
  30. ]
  31. }

查询停简单代收结算信息明细列表,支持分页

参数 类型 长度 是否必须 名称 备注
amSettleSummaryId string Y 核算汇总id
start string N 分页参数,数据开始位置 下载excel时无效,不必传递
limit string N 分页参数,数据结束位置 下载excel时无效,不必传递

* 响应参数列表

参数 类型 长度 是否必须 名称 备注
timestamp string Y 响应时间
isSuccess string Y 请求是否成功 0成功,1失败
msg string 响应描述
totalCount string 记录总条数
orderList array{object} 订单列表
orderId string 订单流水号
type string 代收类型 1、订单支付
payDt string 支付时间
allAmount string 总金额
settleAmount string 结算金额

* 响应参数事例:

  1. {
  2. "timestamp": "2017-05-11 16:00:38 255",
  3. "isSuccess": "0",
  4. "totalCount": "2",
  5. "orderList": [
  6. {
  7. "orderId": "123",
  8. "type": "1",
  9. "payDt": "2017-04-12 00:00:00",
  10. "allAmount": "100.00",
  11. "settleAmount": "100.00"
  12. },
  13. {
  14. "orderId": "1233",
  15. "type": "1",
  16. "payDt": "2017-04-12 00:00:00",
  17. "allAmount": "100.00",
  18. "settleAmount": "100.00"
  19. }
  20. ]
  21. }

查询停简单扫码结算信息明细列表,支持分页

参数 类型 长度 是否必须 名称 备注
amSettleSummaryId string Y 核算汇总id
start string N 分页参数,数据开始位置 下载excel时无效,不必传递
limit string N 分页参数,数据结束位置 下载excel时无效,不必传递

* 响应参数列表

参数 类型 长度 是否必须 名称 备注
timestamp string Y 响应时间
isSuccess string Y 请求是否成功 0成功,1失败
msg string 响应描述
totalCount string 记录总条数
orderList array{object} 订单列表
orderId string 订单流水号
payDt string 支付时间
allAmount string 总金额 单位:元
settleAmount string 结算金额 单位:元

* 响应参数事例:

  1. {
  2. "timestamp": "2017-05-11 16:00:38 255",
  3. "isSuccess": "0",
  4. "totalCount": "2",
  5. "orderList": [
  6. {
  7. "orderId": "123",
  8. "payDt": "2017-04-12 00:00:00",
  9. "allAmount": "100.00",
  10. "settleAmount": "100.00"
  11. },
  12. {
  13. "orderId": "1233",
  14. "payDt": "2017-04-12 00:00:00",
  15. "allAmount": "100.00",
  16. "settleAmount": "100.00"
  17. }
  18. ]
  19. }

查询收费员班次统计

参数 类型 长度 是否必须 名称 备注
onStartDate string N 上岗开始时间 yyyy-MM-dd HH:mm:ss
onEndDate string N 上岗结束时间 yyyy-MM-dd HH:mm:ss
offStartDate string N 离岗开始时间 yyyy-MM-dd HH:mm:ss
offEndDate string N 离岗结束时间 yyyy-MM-dd HH:mm:ss
pmParkId string Y 停车场ID

* 响应参数列表

参数 类型 长度 是否必须 名称 备注
timestamp string Y 响应时间
isSuccess string Y 请求是否成功 0成功,1失败
msg string 响应描述
count string 班次数量
amount string 现金汇总金额 单位:元

* 响应参数事例:

  1. {
  2. "timestamp": "2017-05-11 16:00:38 255",
  3. "isSuccess": "0",
  4. "count": "20",
  5. "amount": "100.00"
  6. }

查询收费员班次列表,支持分页

参数 类型 长度 是否必须 名称 备注
onStartDate string N 上岗开始时间 yyyy-MM-dd HH:mm:ss
onEndDate string N 上岗结束时间 yyyy-MM-dd HH:mm:ss
offStartDate string N 离岗开始时间 yyyy-MM-dd HH:mm:ss
offEndDate string N 离岗结束时间 yyyy-MM-dd HH:mm:ss
pmParkId string Y 停车场ID
start string N 分页参数,数据开始位置 下载excel时无效,不必传递
limit string N 分页参数,数据结束位置 下载excel时无效,不必传递

* 响应参数列表

参数 类型 长度 是否必须 名称 备注
timestamp string Y 响应时间
isSuccess string Y 请求是否成功 0成功,1失败
msg string 响应描述
totalCount string 记录总条数
scheduleList array{object} 班次列表
scheduleId string 班次id
gmUserName string 收费员名称
exitNo string 岗亭名称
workStartDt string 上岗时间
workEndDt string 离岗时间
orderAmount string 现金订单总金额 单位:元
orderCount string 现金订单总数量
idLoadOrder string 是否拉取订单完毕 0表示完毕,其余表示未完毕,如果未完毕,不能查看详情

* 响应参数事例:

  1. {
  2. "timestamp": "2017-05-11 16:00:38 255",
  3. "isSuccess": "0",
  4. "totalCount": "2",
  5. "scheduleList": [
  6. {
  7. "scheduleId": "123",
  8. "gmUserName": "123",
  9. "exitNo": "123",
  10. "workStartDt": "2017-04-12 00:00:00",
  11. "workEndDt": "2017-04-12 12:00:00",
  12. "orderAmount": "100.00",
  13. "orderCount": "100",
  14. "idLoadOrder": "0"
  15. },
  16. {
  17. "scheduleId": "1232",
  18. "gmUserName": "1232",
  19. "exitNo": "123",
  20. "workStartDt": "2017-04-12 00:00:00",
  21. "workEndDt": "2017-04-12 12:00:00",
  22. "orderAmount": "100.00",
  23. "orderCount": "100",
  24. "idLoadOrder": "0"
  25. }
  26. ]
  27. }

查询停简单收费员现金结算信息明细列表,支持分页

参数 类型 长度 是否必须 名称 备注
scheduleId string Y 收费员班次id
start string N 分页参数,数据开始位置 下载excel时无效,不必传递
limit string N 分页参数,数据结束位置 下载excel时无效,不必传递

* 响应参数列表

参数 类型 长度 是否必须 名称 备注
timestamp string Y 响应时间
isSuccess string Y 请求是否成功 0成功,1失败
msg string 响应描述
totalCount string 记录总条数
orderList array{object} 订单列表
amparkstandardcashid string 订单流水号
carnum string 车牌号
startdt string 进场时间
enddt string 出场时间
receivedt string 云端订单接收时间
isReissue string 是否补发订单 0是1否
parkamount string 停车总金额
cashamount string 现金金额
  1. {
  2. "timestamp": "2017-05-11 16:00:38 255",
  3. "isSuccess": "0",
  4. "totalCount": "2",
  5. "orderList": [
  6. {
  7. "amparkstandardcashid": "123",
  8. "carnum": "京A12345",
  9. "startdt": "2017-04-12 00:00:00",
  10. "enddt": "2017-04-13 00:00:00",
  11. "receivedt": "2017-04-15 00:00:00",
  12. "isReissue": "1",
  13. "parkamount": "100.00",
  14. "cashamount": "100.00"
  15. },
  16. {
  17. "orderId": "1223",
  18. "carnum": "京A12345",
  19. "startdt": "2017-04-12 00:00:00",
  20. "enddt": "2017-04-13 00:00:00",
  21. "receivedt": "2017-04-15 00:00:00",
  22. "isReissue": "1",
  23. "parkamount": "100.00",
  24. "cashamount": "100.00"
  25. }
  26. ]
  27. }
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注