添加汇付支付

This commit is contained in:
韩鹏辉 2024-02-27 19:00:38 +08:00
parent c4be42c23a
commit 3e8d330bdb
3 changed files with 9 additions and 4 deletions

View File

@ -2798,6 +2798,7 @@ public class HfMerService {
tbPlussMerchantAuditRecordMapper.insert(merchantAuditRecord);
tbPlussMerchantHfInfo.setStatus("2"); //商户入驻待审核
tbPlussMerchantHfInfo.setUpdateTime(new Date());
tbPlussMerchantHfInfoMapper.updateByPrimaryKey(tbPlussMerchantHfInfo);

View File

@ -388,13 +388,14 @@ public class LklAuditService {
channelStatus.setCallbackstatus("0");
channelStatus.setRemark("拉卡拉审核中");
channelStatus.setMerchantid(String.valueOf(arry.get("merchantNo")));
channelStatus.setMercname(null);
if(ObjectUtil.isEmpty(channelStatus.getId())){
channelStatus.setCreatetime(new Date());
tbPlussMerchantChannelStatusMapper.insert(channelStatus);
}else {
channelStatus.setUpdatetime(new Date());
tbPlussMerchantChannelStatusMapper.updateByPrimaryKey(channelStatus);
tbPlussMerchantChannelStatusMapper.updateByPrimaryKeySelective(channelStatus);
}
TbPlussMerchantAuditRecord merchantAuditRecord = new TbPlussMerchantAuditRecord();
@ -426,7 +427,8 @@ public class LklAuditService {
tbPlussMerchantChannelStatusMapper.insert(channelStatus);
}else {
channelStatus.setUpdatetime(new Date());
tbPlussMerchantChannelStatusMapper.updateByPrimaryKey(channelStatus);
channelStatus.setMercname(null);
tbPlussMerchantChannelStatusMapper.updateByPrimaryKeySelective(channelStatus);
}
TbPlussMerchantAuditRecord merchantAuditRecord = new TbPlussMerchantAuditRecord();
@ -503,7 +505,8 @@ public class LklAuditService {
// 修改商户状态
mcs.setStatus("6");
mcs.setApplicationid(String.valueOf(arry.get("reviewRelatedId")));
tbPlussMerchantChannelStatusMapper.updateByPrimaryKey(mcs);
mcs.setMercname(null);
tbPlussMerchantChannelStatusMapper.updateByPrimaryKeySelective(mcs);
} else {
MsgException.throwException("修改进件信息失败");
}

View File

@ -458,7 +458,8 @@ public class YSAuditServiceV3 {
mcs.setApplicationid(extra.getString("sysFlowId"));
mcs.setThirdstatus(TbPlussMerchantChannelStatus.AUDIT_THIRD_STATUS_AUDITING);
mcs.setInterfaceversion(INTERFACE_VERSION);
merchantChannelStatusMapper.updateByPrimaryKey(mcs);
mcs.setMercname(null);
merchantChannelStatusMapper.updateByPrimaryKeySelective(mcs);
}