建模接口调整

ht
qijirenjian 3 months ago
parent 0f451b2b3e
commit 6a7d2454a7

1
.gitignore vendored

@ -10,3 +10,4 @@
/gradlew.bat
/README.md
/settings.gradle
/secDevClasses/

@ -1,6 +1,4 @@
plugins{
id 'war'
}
description = ""
dependencies {

@ -59,12 +59,13 @@ public class CustomJavaCode extends BaseBean implements Action, EsbServerlessRpc
logger.error("params = " + JSON.toJSONString(params));
Map<String, Object> weaverResultMap = new HashMap<>();
Long billid = Long.parseLong(String.valueOf(params.getOrDefault("billid", -1)));
logger.error("billid = " + billid);
try {
Long i = -1l;
if (i != null) {
if (i > 0 ) {
logger.error("billid : " + billid);
RecordSet recordSet = I18nContextUtil.getBean(RecordSet.class);
String str1 = " select * from e10_common.dbo.formtable_main_619 where id =" + i;
String str1 = " select * from e10_common.dbo.formtable_main_619 where id =" + billid;
logger.error(" sql == " + str1);
recordSet.executeSql(str1);
ArrayList<Map<String, String>> arrayList = new ArrayList();
@ -103,8 +104,7 @@ public class CustomJavaCode extends BaseBean implements Action, EsbServerlessRpc
changeWhiteListState.changeState(arrayList);
logger.error("do blacklist webservice: " + str2 + "][message : " + str3 + "]");
}
}
Map<String, Object> res = new HashMap<>();
res.put("status", true);
res.put("msg", "success");

Loading…
Cancel
Save