1.修复bug

2.优化文档
This commit is contained in:
Actinia-517
2017-12-21 00:01:07 +08:00
parent 534fadf92a
commit 0528a23ddb
6 changed files with 40 additions and 15 deletions

View File

@@ -1,6 +1,7 @@
package com.egzosn.pay.union.bean;
import com.egzosn.pay.common.bean.TransactionType;
import com.egzosn.pay.common.util.str.StringUtils;
import java.util.Map;
@@ -90,7 +91,9 @@ public enum UnionTransactionType implements TransactionType{
//业务类型
contentData.put(SDKConstants.param_bizType,this.getBizType());
//渠道类型
contentData.put(SDKConstants.param_channelType,this.getChannelType());
if(StringUtils.isNotBlank(this.getChannelType())){
contentData.put(SDKConstants.param_channelType,this.getChannelType());
}
}