Browse Source

个人认证页面修改为默认短信认证,企业认证页面去掉企业支付宝认证方式

qxm 4 years ago
parent
commit
c36d566dc2

+ 1 - 0
suishenbang-wxportal/suishenbang-wxportal-common/src/main/java/com/dgtly/wxportal/service/impl/EsignOrganRealVerifyServiceImpl.java

@@ -52,6 +52,7 @@ public class EsignOrganRealVerifyServiceImpl implements IEsignOrganRealVerifySer
         JSONObject json = new JSONObject();
         json.put("accountId", accountId);
         json.put("agentAccountId", agentAccountId);
+        json.put("availableAuthTypes", new String[]{"ORG_BANK_TRANSFER"} );
         json.put("contextInfo", contextInfo);
         json.put("configParams", configParams);
         return json;

+ 1 - 0
suishenbang-wxportal/suishenbang-wxportal-common/src/main/java/com/dgtly/wxportal/service/impl/EsignPersonReaLnVerifyServiceImpl.java

@@ -52,6 +52,7 @@ public class EsignPersonReaLnVerifyServiceImpl implements IEsignPersonRealnVerif
     private static JSONObject buildOneStepFlowParam(String accountId, String receiveUrlMobileNo, ContextInfo contextInfo, ConfigParams configParams) {
         JSONObject json = new JSONObject();
         json.put("accountId", accountId);
+        json.put("authType", "PSN_TELECOM_AUTHCODE");
         json.put("contextInfo", contextInfo);
         json.put("configParams", configParams);
         return json;