Ver Fonte

修改导出及添加排队接口

Redeem há 1 ano atrás
pai
commit
db2cfa45ea

+ 1 - 1
src/main/java/com/steerinfo/dil/controller/UniversalController.java

@@ -379,7 +379,7 @@ public class UniversalController extends BaseRESTfulController {
     public RESTfulResult excleExport(@RequestBody Map<String,Object> map, HttpServletRequest httpServletRequest) throws IOException {
         JSONObject jsonObject = JSONObject.parseObject(JSONObject.toJSONString(map));
         jsonObject.putAll( JSONObject.parseObject(JSONObject.toJSONString(map.get("requestQuery"))));
-        String url  =  "http://localhost:8080"+map.get("requestUrl").toString() + "&pageNum=1&pageSize=10000";
+        String url  =  "http://172.16.90.202:80"+map.get("requestUrl").toString() + "&pageNum=1&pageSize=10000";
         JSONObject json = HttpUtil.sendPost(url,jsonObject,httpServletRequest.getHeader("cookie"));
         Map<String, Object> data = (Map<String, Object>) json.get("data");
         List<Map<String,Object>> listMap = (List<Map<String, Object>>) data.get("list");