待办工单和已办工单

develop
guyuliang 2024-11-05 10:06:27 +08:00
parent d4cebec79d
commit 18144d3681
1 changed files with 2 additions and 2 deletions

View File

@ -78,8 +78,8 @@ public class IndexServiceImpl implements IndexService {
}
}
resultMap.put("waitDoneTotal", waitDoneTotal);
resultMap.put("doneTotal", doneTotal);
resultMap.put("waitDoneTotal", jsonObject.getInteger("todoCount"));
resultMap.put("doneTotal", jsonObject.getInteger("doneCount"));
return new GeneralResult(true, resultMap, "查询成功");
} catch (Exception e) {