88e030b7
王彪总
init project
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
package com.java110.acct.payment;
import com.alibaba.fastjson.JSONObject;
import com.java110.core.context.ICmdDataFlowContext;
import com.java110.dto.payment.NotifyPaymentOrderDto;
import com.java110.dto.payment.PaymentOrderDto;
import java.util.Map;
public interface IPaymentFactoryAdapt {
/**
* 支付
* @param paymentOrderDto
* @return
*/
Map java110Payment(PaymentOrderDto paymentOrderDto, JSONObject reqJson,ICmdDataFlowContext context) throws Exception;
/**
* 支付完成通知
* @param notifyPaymentOrderDto
* @return
*/
PaymentOrderDto java110NotifyPayment(NotifyPaymentOrderDto notifyPaymentOrderDto);
}
|