From 229cdb3d5692219b8ddd3ebcf13873d3a0bc703a Mon Sep 17 00:00:00 2001 From: huangh <hshgjzd5@163.com> Date: Thu, 26 Sep 2024 10:34:54 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/gzdyh_test' into gzdyh_test --- dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/controller/web/CaseAssistApplyWebController.java | 17 ++++++++++++++++- 1 files changed, 16 insertions(+), 1 deletions(-) diff --git a/dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/controller/web/CaseAssistApplyWebController.java b/dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/controller/web/CaseAssistApplyWebController.java index 169314d..a2fea0c 100644 --- a/dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/controller/web/CaseAssistApplyWebController.java +++ b/dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/controller/web/CaseAssistApplyWebController.java @@ -5,6 +5,7 @@ import cn.huge.base.config.CurrentUser; import cn.huge.module.cases.domain.po.CaseAssistApply; import cn.huge.module.cases.service.CaseAssistApplyService; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.google.common.collect.Maps; import lombok.extern.slf4j.Slf4j; import org.apache.commons.lang3.StringUtils; @@ -264,7 +265,7 @@ /** * 审核联合审核 - * @url {ctx}/api/web/caseAssistApply/addCaseAssistApply + * @url {ctx}/api/web/caseAssistApply/reviewCaseAssistApply * @param caseAssistApply 实体对象 * @return Object */ @@ -278,4 +279,18 @@ } } + /** + * 根据案件编号查询联合处置申请 + * @url {ctx}/api/web/caseAssistApply/getByCaseId + * @param caseId 主键编号 + * @return Object + */ + @GetMapping("/getByCaseId") + public Object getByCaseId(@RequestParam(value = "caseId") String caseId) { + try { + return ReturnSucUtils.getRepInfo(service.caseAssistApplyByCaseId(caseId)); + } catch (Exception e) { + return ReturnFailUtils.getRepInfo(); + } + } } -- Gitblit v1.8.0