forked from gzzfw/backEnd/gz-dyh

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();
        }
    }
}