dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/controller/web/CaseInfoWebController.java
@@ -503,4 +503,21 @@ return ReturnFailUtils.getRepInfo(e.getMessage()); } } /** * PC端-查询档案信息 * @url {ctx}/api/web/caseInfo/getCaseArchivesInfo?id= * @param id 纠纷编号 * @return Object */ @GetMapping("/getCaseArchivesInfo") public Object getCaseArchivesInfo(@RequestParam(value = "id") String id) { try { return ReturnSucUtils.getRepInfo(service.getCaseArchivesInfo(id)); } catch (Exception e) { return ReturnFailUtils.getRepInfo(e.getMessage()); } } }