isv的停车账单信息同步给喵街
名称 | 类型 | 是否必须 | 示例值 | 更多限制 | 描述 |
---|---|---|---|---|---|
isv_pay_bill_dto | IsvPayBillDto [] | 必须 |
|
账单同步的入参 | |
|
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
result | ParkBaseResult | 返回结果 | |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret); TaojieParkingPaybillSyncRequest req = new TaojieParkingPaybillSyncRequest(); List<TaojieParkingPaybillSyncRequest.IsvPayBillDto> list2 = new ArrayList<TaojieParkingPaybillSyncRequest.IsvPayBillDto>(); TaojieParkingPaybillSyncRequest.IsvPayBillDto obj3 = new TaojieParkingPaybillSyncRequest.IsvPayBillDto(); list2.add(obj3); obj3.setRealFee(1789L); obj3.setJstMerchantNo( "000000008022131" ); obj3.setBusinessTypeDesc( "停车" ); obj3.setOrderFee(1880L); obj3.setTradeDate(StringUtils.parseDateTime( "2020-10-15 00:00:00" )); obj3.setParkId( "js19010" ); obj3.setMerchantName( "浙江银泰百货有限公司北京大红门分公司" ); obj3.setMerchantBillNo( "BK201008102713295p20062252016729" ); obj3.setMerchantTypeDesc( "二级商户" ); obj3.setCarNo( "浙A12345" ); obj3.setServiceChargeFee(11L); obj3.setBusinessType( "09" ); obj3.setBillNo( "23232232323" ); obj3.setMerchantType( "1" ); obj3.setOriginFee(1800L); obj3.setMerchantNo( "1789" ); obj3.setCloudBillNo( "BK201008102713295p20062252016729" ); req.setIsvPayBillDto(list2); TaojieParkingPaybillSyncResponse rsp = client.execute(req); System.out.println(rsp.getBody()); |
1 2 3 4 5 6 7 8 | < taojie_parking_paybill_sync_response > < result > < code >500</ code > < success >true</ success > < model >true</ model > < message >账单同步失败</ message > </ result > </ taojie_parking_paybill_sync_response > |
1 2 3 4 5 6 | < error_response > < code >50</ code > < msg >Remote service error</ msg > < sub_code >isv.invalid-parameter</ sub_code > < sub_msg >非法参数</ sub_msg > </ error_response > |
错误码 | 错误描述 | 解决方案 |
---|