查询待办工单

develop
guyuliang 2024-08-26 16:38:32 +08:00
parent b580e352c9
commit 72f332b379
1 changed files with 2 additions and 2 deletions

View File

@ -34,8 +34,8 @@ public class IndexServiceImpl implements IndexService {
String result = ykUtil.call(YkInfo.getTaskList, param, JSONArray.class);
log.info("result");
JSONArray dataArray = JSONArray.parseArray(result);
return new GeneralResult(true, dataArray,"查询成功");
JSONObject jsonObject = JSONArray.parseObject(result, JSONObject.class);
return new GeneralResult(true, jsonObject,"查询成功");
} catch (Exception e) {
log.info("查询失败",e);
return new GeneralResult(false, "查询失败");