forked from gzzfw/backEnd/gz-dyh

wangwh
2024-09-13 99bb79a7ceac1107d2bf65df29e149810bf2bbb7
dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/controller/web/CaseTaskWebController.java
@@ -737,4 +737,18 @@
            return ReturnFailUtils.getRepInfo();
        }
    }
    /**
     * web端-申请记录
     * @url {ctx}/api/web/caseTask/listMyApplyRecord
     * @return
     */
    @GetMapping("/listMyApplyRecord")
    public Object listMyApplyRecord(@RequestParam(value = "caseId") String caseId) {
        try {
            return ReturnSucUtils.getRepInfo(service.listMyApplyRecord(caseId));
        } catch (Exception e) {
            return ReturnFailUtils.getRepInfo();
        }
    }
}