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 在接口中 BankServiceaccountNumber - 银行卡号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 在接口中 BankServiceoffset - 本次查询偏移量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 在接口中 BankServiceoffset - 本次查询偏移量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 在接口中 BankServiceWxPayException - .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 在接口中 BankServiceWxPayException - .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 在接口中 BankServicebankAliasCode - 银行别名的编码,查询支行接口仅支持需要填写支行的银行别名编码。示例值:1000006247cityCode - 城市编码,唯一标识一座城市,用于结合银行别名编码查询支行列表。示例值:536offset - 非负整数,表示该次请求资源的起始位置,从0开始计数。调用方选填,默认为0。offset为20,limit为100时,查询第21-120条数据limit - 非0非负的整数,该次请求可返回的最大资源条数。示例值:200WxPayException - .Copyright © 2024. All rights reserved.