风控中台对接-pboc调整参数

This commit is contained in:
zhanglei 2023-09-06 14:06:05 +08:00
parent aae0f01e46
commit 5058e9b87b
2 changed files with 1 additions and 48 deletions

View File

@ -23,7 +23,7 @@
Map<String,String> params = new HashMap<String,String>(); //初始化参数
// TODO: 2023/1/31 上线需修改
params.put("fullCertId",CurPage.getParameter("fullcertId"));
params.put("fullCertId",CurPage.getParameter("fullCertId"));
params.put("fullName",CurPage.getParameter("fullName"));
FileInputStream fr = null;

View File

@ -1,47 +0,0 @@
package com.ample.esb.web;
import com.amarsoft.are.jbo.BizObjectManager;
import com.amarsoft.are.jbo.JBOException;
import com.amarsoft.are.jbo.JBOFactory;
import com.ample.esb.util.BaicPropertiesUtil;
import com.ample.esb.util.DateUtils;
import jbo.oti.RC_SCORE_RESULT;
import org.apache.commons.codec.binary.Hex;
import org.bouncycastle.util.io.pem.PemObject;
import org.bouncycastle.util.io.pem.PemReader;
import javax.crypto.BadPaddingException;
import javax.crypto.Cipher;
import javax.crypto.IllegalBlockSizeException;
import javax.crypto.NoSuchPaddingException;
import java.io.FileReader;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.security.*;
import java.security.spec.InvalidKeySpecException;
import java.security.spec.X509EncodedKeySpec;
import java.util.Base64;
public class RCScoreResultController {
public String queryScoreResultUrl(){
try {
BizObjectManager rcScoreResult = JBOFactory.getBizObjectManager(RC_SCORE_RESULT.CLASS_NAME);
} catch (Exception e) {
throw new RuntimeException(e);
}
return "";
}
private String projectNo;
public String getProjectNo() {
return projectNo;
}
public void setProjectNo(String projectNo) {
this.projectNo = projectNo;
}
}