|
@@ -27,6 +27,7 @@ public interface HeliPayService {
|
|
|
ResponseJson<JSONObject> payByWeChat(HeliDto heliDto, HttpHeaders headers) throws IntrospectionException, InvocationTargetException, IllegalAccessException;
|
|
|
|
|
|
ResponseJson<JSONObject> payOnline(HeliDto heliDto, HttpHeaders headers) throws IntrospectionException, InvocationTargetException, IllegalAccessException;
|
|
|
+
|
|
|
/**
|
|
|
* 回调
|
|
|
*/
|
|
@@ -38,6 +39,7 @@ public interface HeliPayService {
|
|
|
* 延时分账
|
|
|
*/
|
|
|
// void delayedSplitting(String callUrl);
|
|
|
+
|
|
|
/**
|
|
|
* 延时分账异步回调
|
|
|
*/
|
|
@@ -45,7 +47,8 @@ public interface HeliPayService {
|
|
|
|
|
|
ResponseJson<Map<String, Object>> bankCode();
|
|
|
|
|
|
- ResponseJson<JSONObject> getPayOrderResult(String mbOrderId, Integer orderFlag,Integer shopOrderId) throws IntrospectionException, InvocationTargetException, IllegalAccessException;
|
|
|
+ ResponseJson<JSONObject> getPayOrderResult(String mbOrderId, Integer orderFlag, Integer shopOrderId) throws IntrospectionException, InvocationTargetException, IllegalAccessException;
|
|
|
+
|
|
|
/**
|
|
|
* 银联回调
|
|
|
*/
|
|
@@ -55,13 +58,13 @@ public interface HeliPayService {
|
|
|
|
|
|
ResponseJson<JSONObject> getUnionResult(String mbOrderId, Integer orderFlag, Integer shopOrderId);
|
|
|
|
|
|
- ResponseJson<Map<String, String>> quickPay(HeliDto heliDto, HttpHeaders headers);
|
|
|
+ ResponseJson<Map<String, String>> quickPay(HeliDto heliDto, HttpHeaders headers);
|
|
|
|
|
|
String quickPayCallback(QuickPayConfirmPayResponseVo res);
|
|
|
|
|
|
- ResponseJson<Map<String,String>> bindBankCard(HeliDto heliDto);
|
|
|
+ ResponseJson<Map<String, String>> bindBankCard(HeliDto heliDto);
|
|
|
|
|
|
- ResponseJson bindByCode(Integer flag,String bindCode, String orderId,String infoId,String customer);
|
|
|
+ ResponseJson bindByCode(Integer flag, String bindCode, String orderId, String infoId, String customer);
|
|
|
|
|
|
ResponseJson<List<BankListDto>> bankInfos(Integer cardType);
|
|
|
|