diff --git a/lc123/cloud/app/plugin/utils/FWRestfulUtils.java b/lc123/cloud/app/plugin/utils/FWRestfulUtils.java index f5eb4fd..72257f1 100644 --- a/lc123/cloud/app/plugin/utils/FWRestfulUtils.java +++ b/lc123/cloud/app/plugin/utils/FWRestfulUtils.java @@ -23,7 +23,6 @@ import org.apache.http.impl.client.CloseableHttpClient; import org.apache.http.impl.client.HttpClients; import org.apache.http.message.BasicNameValuePair; import org.apache.http.util.EntityUtils; -import org.jetbrains.annotations.Nullable; import java.math.BigInteger; import java.security.MessageDigest; @@ -89,7 +88,7 @@ public class FWRestfulUtils { System.out.println("===请求参数dataparam==="+dataParam); //restful接口url - String url = FW_Main_URL + ourl; + String url = FW_Main_URL + ourl;//http://180.166.208.42:8043/ Map params = new HashMap<>(); params.put("data",dataParam); @@ -130,6 +129,7 @@ public class FWRestfulUtils { if (response != null && response.getEntity() != null) { //返回信息 String resulString = EntityUtils.toString(response.getEntity()); + pushlog.set("tqq9_returnstring_tag", resulString); System.out.println("成功"+ resulString); OperationServiceHelper.executeOperate("save", "tqq9_fwpushlog", new DynamicObject[]{pushlog}, OperateOption.create()); return resulString;