1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| package com.java110.acct.payment;
|
| import com.alibaba.fastjson.JSONObject;
| import com.java110.core.context.ICmdDataFlowContext;
| import com.java110.dto.payment.PaymentOrderDto;
|
| /**
| * 业务统一下单接口
| */
| public interface IPaymentBusiness {
|
|
| /**
| * 统一下单
| * @param reqJson
| * @return
| */
| PaymentOrderDto unified(ICmdDataFlowContext context,JSONObject reqJson);
|
| /**
| * 支付完通知接口
| * @param paymentOrderDto
| */
| void notifyPayment(PaymentOrderDto paymentOrderDto, JSONObject reqJson);
| }
|
|