| | |
| | | return response; |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 查询支付宝支付订单信息 |
| | | /// </summary> |
| | | /// <param name="input"></param> |
| | | /// <returns></returns> |
| | | public async Task<AlipayTradeQueryResponse> OrderInQuiry(OrderInQuiryInput input) |
| | | { |
| | | AlipayTradeQueryResponse response = Factory.Payment.Common().Query(input.OutTradeNo); |
| | | return response; |
| | | } |
| | | |
| | | public async Task<AlipayTradeQueryResponse> TradeRefundQuiry(OrderInQuiryInput input) |
| | | { |
| | | AlipayTradeQueryResponse response = Factory.Payment.Common().Query(input.OutTradeNo); |
| | | return response; |
| | | } |
| | | |
| | | public async Task<AlipayTradeRefundResponse> TradeRefund(AlipayTradeRefundRequest input) |
| | | { |
| | | AlipayTradeRefundResponse response = Factory.Payment.Common().Refund(input.OutTradeNo,input.RefundAmount); |