转账订单设置属性信息

This commit is contained in:
egzosn
2020-05-24 23:29:18 +08:00
parent f37878ad68
commit 84b898f420
2 changed files with 19 additions and 2 deletions

View File

@@ -1,5 +1,7 @@
package com.egzosn.pay.common.bean;
import java.util.Map;
/**
* 转账类型
* @author egan
@@ -7,6 +9,12 @@ package com.egzosn.pay.common.bean;
* date 2018/9/28.19:45
*/
public interface TransferType extends TransactionType{
/**
* 设置属性
*
* @param attr 已有属性对象
* @param order 转账订单
* @return 属性对象
*/
Map<String, Object> setAttr(Map<String, Object> attr, TransferOrder order);
}