All Downloads are FREE. Search and download functionalities are using the official Maven repository.

matrix.business.pay.interfaces.PayInterface Maven / Gradle / Ivy

There is a newer version: 2.1.11
Show newest version
package matrix.business.pay.interfaces;

import matrix.business.pay.entity.MatrixBusinessPayEntity;
import matrix.business.pay.entity.MatrixBusinessRefundEntity;

import java.util.List;

/**
 * 支付退款回调
 *
 * @author wangcheng
 */
public interface PayInterface {

    /**
     * 支付成功回调
     *
     * @param payEntities 支付实体列表
     */
    void paySuccess(List payEntities);

    /**
     * 退款成功回调
     *
     * @param refundEntities 退款实体列表
     */
    void refundSuccess(List refundEntities);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy