com.alipay.api.domain.AlipayTradeFastpayRefundQueryModel Java Examples

The following examples show how to use com.alipay.api.domain.AlipayTradeFastpayRefundQueryModel. 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 vote down vote up
@Override
public AlipayTradeFastpayRefundQueryResponse selectRefund(AlipayTradeFastpayRefundQueryModel model) throws AlipayApiException {
    AlipayTradeFastpayRefundQueryRequest request = new AlipayTradeFastpayRefundQueryRequest();
    request.setBizModel(model);
    return alipayClient.execute(request);

}
 
Example #2
Source File: PayRefundQueryParamChain.java    From alipay with Apache License 2.0 4 votes vote down vote up
public PayRefundQueryParamChain(AlipayClient alipayClient, AlipayTradeFastpayRefundQueryModel alipayTradeFastpayRefundQueryModel) {
    this.alipayClient = alipayClient;
    this.alipayTradeFastpayRefundQueryModel = alipayTradeFastpayRefundQueryModel;
}
 
Example #3
Source File: PayRefundQueryChain.java    From alipay with Apache License 2.0 4 votes vote down vote up
public PayRefundQueryChain(AlipayClient alipayClient, AlipayTradeFastpayRefundQueryModel alipayTradeFastpayRefundQueryModel) {
    this.alipayClient = alipayClient;
    this.alipayTradeFastpayRefundQueryModel = alipayTradeFastpayRefundQueryModel;
}
 
Example #4
Source File: AlipayService.java    From fast-family-master with Apache License 2.0 2 votes vote down vote up
/**
 * 查询退款
 *
 * @param model
 * @return
 * @throws AlipayApiException
 */
AlipayTradeFastpayRefundQueryResponse selectRefund(AlipayTradeFastpayRefundQueryModel model) throws AlipayApiException;