mirror of
https://gitee.com/egzosn/pay-java-parent.git
synced 2026-05-31 12:59:35 +08:00
增加支付订单泛型用于开发者扩展订单参数信息
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
package com.egzosn.pay.payoneer.api;
|
||||
|
||||
import com.egzosn.pay.common.api.PayService;
|
||||
import com.egzosn.pay.common.bean.PayOrder;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
@@ -15,7 +16,7 @@ import java.util.Map;
|
||||
*
|
||||
*/
|
||||
|
||||
public interface AdvancedPayService extends PayService<PayoneerConfigStorage> {
|
||||
public interface AdvancedPayService extends PayService<PayoneerConfigStorage, PayOrder> {
|
||||
/**
|
||||
* 获取授权页面
|
||||
* @param payeeId 用户id
|
||||
|
||||
@@ -33,7 +33,7 @@ import java.util.*;
|
||||
* create 2018-01-19
|
||||
* </pre>
|
||||
*/
|
||||
public class PayoneerPayService extends BasePayService<PayoneerConfigStorage> implements AdvancedPayService {
|
||||
public class PayoneerPayService extends BasePayService<PayoneerConfigStorage, PayOrder> implements AdvancedPayService {
|
||||
/**
|
||||
* 测试地址
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user