com.alipay.api.request.AlipayDataDataserviceBillDownloadurlQueryRequest Java Examples
The following examples show how to use
com.alipay.api.request.AlipayDataDataserviceBillDownloadurlQueryRequest.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: AlipayServiceImpl.java From fast-family-master with Apache License 2.0 | 5 votes |
@Override public AlipayDataDataserviceBillDownloadurlQueryResponse downBill( AlipayDataDataserviceBillDownloadurlQueryModel model) throws AlipayApiException { AlipayDataDataserviceBillDownloadurlQueryRequest request = new AlipayDataDataserviceBillDownloadurlQueryRequest(); request.setBizModel(model); return alipayClient.execute(request); }
Example #2
Source File: PayDownloadQueryChain.java From alipay with Apache License 2.0 | 2 votes |
/** * Build Query Bill Download * <p> * 构建查询账单下载 * * @return String * @throws AlipayApiException AlipayApiException */ public String downloadQuery() throws AlipayApiException { AlipayDataDataserviceBillDownloadurlQueryRequest queryRequest = new AlipayDataDataserviceBillDownloadurlQueryRequest (); queryRequest.setBizModel (alipayDataDataserviceBillDownloadurlQueryModel); return alipayClient.execute (queryRequest).getBillDownloadUrl (); }
Example #3
Source File: PayDownloadQueryChain.java From alipay with Apache License 2.0 | 2 votes |
/** * Custom Build QueryRequest * <p> * 自定义构建 QueryRequest * * @param queryRequest queryRequest * @return String * @throws AlipayApiException AlipayApiException */ public String downloadQuery(AlipayDataDataserviceBillDownloadurlQueryRequest queryRequest) throws AlipayApiException { queryRequest.setBizModel (alipayDataDataserviceBillDownloadurlQueryModel); return alipayClient.execute (queryRequest).getBillDownloadUrl (); }