net.mingsoft.pay.biz.IPayNotify Maven / Gradle / Ivy
The newest version!
/**
* Copyright (c) 2012-present 铭软科技(mingsoft.net)
* 本软件及相关文档文件(以下简称“软件”)的版权归 铭软科技 所有
* 遵循 铭软科技《服务协议》中的《保密条款》
*/
package net.mingsoft.pay.biz;
import net.mingsoft.pay.entity.PayLogEntity;
import java.util.Map;
public interface IPayNotify {
/**
* 支付时候,定义的attach的参数值
* @param payLogEntity 支付的日志信息
* @param attach {notifyBeanName:'业务扩展的bean,经过spring管理',自定义参数:值}
* @return
*/
boolean notify(PayLogEntity payLogEntity , Map attach);
}