延迟触发
This commit is contained in:
parent
6e0c842d35
commit
89eb4d52e8
|
@ -99,7 +99,11 @@ 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");
|
||||||
|
@ -134,7 +138,11 @@ 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");
|
||||||
|
|
Loading…
Reference in New Issue