Commit 1e5ec82f by jiang'yun

修改

parent b2d2b677
...@@ -818,8 +818,13 @@ public class DjdcServiceImpl implements DjdcService { ...@@ -818,8 +818,13 @@ public class DjdcServiceImpl implements DjdcService {
" ]\n" + " ]\n" +
"}"; "}";
String url="http://10.68.16.217:33333/get_epbp_jhlist?tn=ZJ_ZJSGJDSJ&jl="+param.getJh();
String result2 = HttpRequest.get(url).execute().body();
System.out.println(result2);
//模拟返回值 //模拟返回值
List<Map<String, Object>> mapList = processJson(jsonString); List<Map<String, Object>> mapList = processJson(result2);
List<Map<String, Object>> jh = mapList.stream().filter(it -> param.getJh().equals(it.get("JH").toString())).collect(Collectors.toList()); List<Map<String, Object>> jh = mapList.stream().filter(it -> param.getJh().equals(it.get("JH").toString())).collect(Collectors.toList());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment