3 Commity

Autor SHA1 Wiadomość Data
  qitz 3c1eb3ba55 Merge branch 'dev' of http://git.xayunmei.com/SH-Arbitrate/Mediation-Backend into qtz1 2 lat temu
  qitz abeca57c83 优化签署回调 2 lat temu
  qtz 0fc6595fb3 Merge branch 'qtz1' of SH-Arbitrate/Mediation-Backend into dev 2 lat temu

+ 0
- 8
ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/service/mscase/impl/MsSignSealServiceImpl.java Wyświetl plik

@@ -1014,9 +1014,6 @@ public class MsSignSealServiceImpl implements MsSignSealService {
1014 1014
     @Override
1015 1015
     @Transactional(rollbackFor = Exception.class)
1016 1016
     public AjaxResult signSeaalCaseApplicaCallback(String reqbodystr) throws EsignDemoException, IOException {
1017
-
1018
-        System.out.println("请求参数reqbodystr:----------->>>>>>"+reqbodystr);
1019
-
1020 1017
         JSONObject jsonObjectCallback = JSONObject.parseObject(reqbodystr);
1021 1018
         Gson gson = new Gson();
1022 1019
         if (jsonObjectCallback != null) {
@@ -1028,11 +1025,6 @@ public class MsSignSealServiceImpl implements MsSignSealService {
1028 1025
             JSONObject psnAccount = operator.getJSONObject("psnAccount");
1029 1026
             String accountMobile = psnAccount.getString("accountMobile");
1030 1027
 
1031
-            System.out.println("请求参数signResult:----------->>>>>>"+signResult);
1032
-            System.out.println("请求参数action:---------->>>>>>"+action);
1033
-            System.out.println("请求参数signFlowId:---------->>>>>>"+signFlowId);
1034
-            System.out.println("请求参数accountMobile:---------->>>>>>"+accountMobile);
1035
-
1036 1028
             Example msSealSignRecordExample = new Example(MsSealSignRecord.class);
1037 1029
             msSealSignRecordExample.createCriteria().andEqualTo("signFlowId", signFlowId);
1038 1030
             MsSealSignRecord sealSignRecordsel = sealSignRecordMapper.selectOneByExample(msSealSignRecordExample);

+ 0
- 6
ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/utils/SignVerifyUtils.java Wyświetl plik

@@ -31,11 +31,6 @@ public class SignVerifyUtils {
31 31
         String signOriaData = timestampreq + reqQuerystr + reqbodystr;
32 32
         String newDisgSignuter= DigesdateUtils.getSignStr(signOriaData, eSignAppSecret);
33 33
 
34
-        System.out.println("请求参数timestampreq:----------->>>>>>"+timestampreq);
35
-        System.out.println("请求参数reqQuerystr:---------->>>>>>"+reqQuerystr);
36
-        System.out.println("请求参数reqbodystr:---------->>>>>>"+reqbodystr);
37
-        System.out.println("加密出来的签名值:----------->>>>>>"+newDisgSignuter);
38
-        System.out.println("header里面的签名值:---------->>>>>>"+orialsignature);
39 34
 
40 35
         if (StringUtils.equals(orialsignature, newDisgSignuter)) {
41 36
             return true;
@@ -59,7 +54,6 @@ public class SignVerifyUtils {
59 54
             String reqvalue = httprequest.getParameter(reqName);
60 55
             httpreqQuery += reqvalue == null ? "" : reqvalue;
61 56
         }
62
-        System.out.println("获取请求字符串是:---"+httpreqQuery);
63 57
         return  httpreqQuery;
64 58
     }
65 59