From 147d54925ff6f5264e7fb5173248da2c3e8e8540 Mon Sep 17 00:00:00 2001 From: admin Date: Sun, 2 Apr 2023 00:45:55 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=BB=E5=8A=A1=E6=8B=89=E5=8F=96=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E4=B8=BAbasic=5Fexport=5Fstatus?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/glxp/api/idc/service/impl/IdcServiceImpl.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/glxp/api/idc/service/impl/IdcServiceImpl.java b/src/main/java/com/glxp/api/idc/service/impl/IdcServiceImpl.java index fe3b6a45..edfe5511 100644 --- a/src/main/java/com/glxp/api/idc/service/impl/IdcServiceImpl.java +++ b/src/main/java/com/glxp/api/idc/service/impl/IdcServiceImpl.java @@ -98,14 +98,14 @@ public class IdcServiceImpl implements IdcService { @Override public BaseResponse taskList(HttpServletRequest request,Map params) { Map map = new HashMap(); - map.put("sql", "select taskId from basic_upload_status where status='0'"); + map.put("sql", "select id from basic_export_status where status='0'"); List> list = dbDao.list(map); return ResultVOUtils.success(list); } @Override public BaseResponse download(HttpServletRequest request,Map params) { - Map map = dbDao.get("select * from basic_upload_status where taskId='"+params.get("taskId")+"'"); + Map map = dbDao.get("select * from basic_export_status where id='"+params.get("taskId")+"'"); if(map==null) ResultVOUtils.error(9000, "下载任务不存在"); String json = FileUtils.readFileAll(map.get("cacheFilePath").toString()); @@ -113,6 +113,7 @@ public class IdcServiceImpl implements IdcService { return ResultVOUtils.success(object); } + /*UDI系统上传自助平台*/ @Override