Compare commits

..

No commits in common. "89eb4d52e8c6a59345300439378127a60c03c5b7" and "dae58b0f80475a0d3c5fd675ecd4847ddff479de" have entirely different histories.

2 changed files with 3 additions and 11 deletions

View File

@ -99,11 +99,7 @@ public class ComplianceSupplierServiceImpl extends BaseService<ComplianceSupplie
String sqjg = null; String sqjg = null;
String cljg = null; String cljg = null;
if (businessDataStr.containsKey("formmain_11208")) { if (businessDataStr.containsKey("formmain_11208")) {
try {
Thread.sleep(10000);
} catch (InterruptedException e) {
Thread.currentThread().interrupt(); // 恢复中断状态
}
tableName = "formmain_11208"; tableName = "formmain_11208";
JSONObject mainData = businessDataStr.getJSONObject(tableName); JSONObject mainData = businessDataStr.getJSONObject(tableName);
id = mainData.getString("id"); id = mainData.getString("id");
@ -138,11 +134,7 @@ public class ComplianceSupplierServiceImpl extends BaseService<ComplianceSupplie
sqjg = "field0157"; sqjg = "field0157";
cljg = "field0158"; cljg = "field0158";
} else if (businessDataStr.containsKey("formmain_11877")) { } else if (businessDataStr.containsKey("formmain_11877")) {
try {
Thread.sleep(10000);
} catch (InterruptedException e) {
Thread.currentThread().interrupt(); // 恢复中断状态
}
tableName = "formmain_11877"; tableName = "formmain_11877";
JSONObject mainData = businessDataStr.getJSONObject(tableName); JSONObject mainData = businessDataStr.getJSONObject(tableName);
id = mainData.getString("id"); id = mainData.getString("id");

View File

@ -506,7 +506,7 @@ public class NuoNuoServiceImpl extends BaseService<NuoNuoEntity, String> impleme
} }
} }
//sendData.put("bizCallbackUrl", "http://10.0.2.112:9021/kangarooDataCenterV3/entranceController/nuoNuoQrdCallback");//回调地址测试 //sendData.put("bizCallbackUrl", "http://10.0.2.112:9021/kangarooDataCenterV3/entranceController/nuoNuoQrdCallback");//回调地址测试
sendData.put("redBizCallbackUrl","http://10.0.2.112:9011/kangarooDataCenterV3/entranceController/nuoNuoQrdCallback");//回调地址正式 sendData.put("bizCallbackUrl","http://10.0.2.112:9011/kangarooDataCenterV3/entranceController/nuoNuoQrdCallback");//回调地址正式
return sendData; return sendData;
} }