修改 中信支付天擎接口参数实体类

This commit is contained in:
zhangqinbin
2022-10-10 11:30:48 +08:00
parent d46efb3b6c
commit 38eddaa7dc
2 changed files with 20 additions and 1 deletions

View File

@ -0,0 +1,18 @@
package com.chinaunicom.mall.ebtp.extend.crypconfigure.entity;
import com.alibaba.fastjson.annotation.JSONField;
import com.chinaunicom.mall.ebtp.common.uniBss.entity.UniBssAttached;
import com.chinaunicom.mall.ebtp.common.uniBss.entity.UniBssHead;
import lombok.Data;
import java.util.Map;
@Data
public class CiticUniBss {
@JSONField(name = "UNI_BSS_ATTACHED")
private UniBssAttached uniBssAttached;
@JSONField(name = "UNI_BSS_BODY")
private Map<String, Object> uniBssBodyMap;
@JSONField(name = "UNI_BSS_HEAD")
private UniBssHead uniBssHead;
}

View File

@ -25,6 +25,7 @@ import com.chinaunicom.mall.ebtp.extend.blockchain.entity.BlockChainLogVo;
import com.chinaunicom.mall.ebtp.extend.blockchain.service.IBlockChainLogService; import com.chinaunicom.mall.ebtp.extend.blockchain.service.IBlockChainLogService;
import com.chinaunicom.mall.ebtp.extend.crypconfigure.crypto.service.CrypServiceImpl; import com.chinaunicom.mall.ebtp.extend.crypconfigure.crypto.service.CrypServiceImpl;
import com.chinaunicom.mall.ebtp.extend.crypconfigure.dao.CrypConfigureMapper; import com.chinaunicom.mall.ebtp.extend.crypconfigure.dao.CrypConfigureMapper;
import com.chinaunicom.mall.ebtp.extend.crypconfigure.entity.CiticUniBss;
import com.chinaunicom.mall.ebtp.extend.crypconfigure.entity.CrypBean; import com.chinaunicom.mall.ebtp.extend.crypconfigure.entity.CrypBean;
import com.chinaunicom.mall.ebtp.extend.crypconfigure.entity.CrypConfigure; import com.chinaunicom.mall.ebtp.extend.crypconfigure.entity.CrypConfigure;
import com.chinaunicom.mall.ebtp.extend.crypconfigure.service.ICrypConfigureService; import com.chinaunicom.mall.ebtp.extend.crypconfigure.service.ICrypConfigureService;
@ -400,7 +401,7 @@ public class CrypConfigureServiceImpl extends BaseServiceImpl<CrypConfigureMappe
*/ */
private String getCiticUniBss(String reqName, Map<String, Object> map) { private String getCiticUniBss(String reqName, Map<String, Object> map) {
UniBss uniBss = new UniBss(); CiticUniBss uniBss = new CiticUniBss();
uniBss.setUniBssAttached(new UniBssAttached().setMediaInf("")); uniBss.setUniBssAttached(new UniBssAttached().setMediaInf(""));
//天擎部分head //天擎部分head
UniBssUtil util = new UniBssUtil(app_id, app_secret); UniBssUtil util = new UniBssUtil(app_id, app_secret);