public class BankServiceImpl extends Object implements BankService
构造器和说明 |
---|
BankServiceImpl() |
public BankAccountResult searchBanksByBankAccount(String accountNumber) throws WxPayException
BankService
获取对私银行卡号开户银行 请求方式:GET(HTTPS) 请求地址:https://api.mch.weixin.qq.com/v3/capital/capitallhh/banks/search-banks-by-bank-account 文档地址:https://pay.weixin.qq.com/wiki/doc/apiv3_partner/Offline/apis/chapter11_2_1.shtml
searchBanksByBankAccount
在接口中 BankService
accountNumber
- 银行卡号 该字段需进行加密处理,加密方法详见敏感信息加密说明。(提醒:必须在HTTP头中上送Wechatpay-Serial)WxPayException
- .public BankingResult personalBanking(Integer offset, Integer limit) throws WxPayException
BankService
查询支持个人业务的银行列表 请求方式:GET(HTTPS) 请求地址:https://api.mch.weixin.qq.com/v3/capital/capitallhh/banks/personal-banking 文档地址:https://pay.weixin.qq.com/wiki/doc/apiv3_partner/Offline/apis/chapter11_2_2.shtml
personalBanking
在接口中 BankService
offset
- 本次查询偏移量limit
- 本次请求最大查询条数,最大值为200WxPayException
- .public BankingResult corporateBanking(Integer offset, Integer limit) throws WxPayException
BankService
支持对公业务的银行列表 请求方式:GET(HTTPS) 请求地址:https://api.mch.weixin.qq.com/v3/capital/capitallhh/banks/corporate-banking 文档地址:https://pay.weixin.qq.com/wiki/doc/apiv3_partner/Offline/apis/chapter11_2_3.shtml
corporateBanking
在接口中 BankService
offset
- 本次查询偏移量limit
- 本次请求最大查询条数,最大值为200WxPayException
- .public ProvincesResult areasProvinces() throws WxPayException
BankService
查询省份列表API 通过本接口获取省份列表数据(不包含中国港澳台地区),可用于省份下的城市数据查询 请求方式:GET(HTTPS) 请求地址:https://api.mch.weixin.qq.com/v3/capital/capitallhh/areas/provinces 文档地址:https://pay.weixin.qq.com/wiki/doc/apiv3_partner/Offline/apis/chapter11_2_4.shtml
areasProvinces
在接口中 BankService
WxPayException
- .public CitiesResult areasCities(Integer provinceCode) throws WxPayException
BankService
查询城市列表API 通过本接口根据省份编码获取省份下的城市列表信息,不包含中国港澳台地区城市信息,可用于支行数据过滤查询 请求方式:GET(HTTPS) 请求地址:https://api.mch.weixin.qq.com/v3/capital/capitallhh/areas/provinces/{province_code}/cities 文档地址:https://pay.weixin.qq.com/wiki/doc/apiv3_partner/Offline/apis/chapter11_2_5.shtml
areasCities
在接口中 BankService
WxPayException
- .public BankBranchesResult bankBranches(String bankAliasCode, Integer cityCode, Integer offset, Integer limit) throws WxPayException
BankService
查询支行列表API 本接口可以用于根据银行别名编码(仅支持需要填写支行的银行别名编码)和城市编码过滤查询支行列表数据 请求方式:GET(HTTPS) 请求地址:https://api.mch.weixin.qq.com/v3/capital/capitallhh/banks/{bank_alias_code}/branches 文档地址:https://pay.weixin.qq.com/wiki/doc/apiv3_partner/Offline/apis/chapter11_2_5.shtml
bankBranches
在接口中 BankService
bankAliasCode
- 银行别名的编码,查询支行接口仅支持需要填写支行的银行别名编码。示例值:1000006247cityCode
- 城市编码,唯一标识一座城市,用于结合银行别名编码查询支行列表。示例值:536offset
- 非负整数,表示该次请求资源的起始位置,从0开始计数。调用方选填,默认为0。offset为20,limit为100时,查询第21-120条数据limit
- 非0非负的整数,该次请求可返回的最大资源条数。示例值:200WxPayException
- .Copyright © 2023. All rights reserved.