From d8a4d842d57c183322324f324396c33df7265479 Mon Sep 17 00:00:00 2001 From: zhouxiantao <1026371446@qq.com> Date: Sun, 08 Sep 2024 10:07:35 +0800 Subject: [PATCH] 综合查询 --- dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/controller/web/CaseTaskWebController.java | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/controller/web/CaseTaskWebController.java b/dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/controller/web/CaseTaskWebController.java index daf365e..086f454 100644 --- a/dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/controller/web/CaseTaskWebController.java +++ b/dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/controller/web/CaseTaskWebController.java @@ -231,4 +231,17 @@ } } + /** + * web端-查询流程进度 + * @url {ctx}/api/web/caseTask/getCountList + * @return Object + */ + @GetMapping("/getCountList") + public Object getCountList(@CurrentUser String userId) { + try { + return ReturnSucUtils.getRepInfo(service.getCountList(userId)); + } catch (Exception e) { + return ReturnFailUtils.getRepInfo(); + } + } } -- Gitblit v1.8.0