소스 검색

修改导出及添加排队接口

Redeem 1 년 전
부모
커밋
db2cfa45ea
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/main/java/com/steerinfo/dil/controller/UniversalController.java

+ 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");