From 22157a03cd07da33df31bed73eabfb328372afb6 Mon Sep 17 00:00:00 2001 From: chen <2710907404@qq.com> Date: Fri, 1 Nov 2024 17:47:09 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=201.=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E5=88=86=E9=A1=B5=E6=8E=A5=E5=8F=A3=E8=BF=94=E5=9B=9E=E6=A1=88?= =?UTF-8?q?=E4=BB=B6id?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../platform/entrustment/vo/EntrustAlterApplyVO.java | 6 ++++++ src/main/resources/mapper/EntrustAlterApplyMapper.xml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/main/java/digital/laboratory/platform/entrustment/vo/EntrustAlterApplyVO.java b/src/main/java/digital/laboratory/platform/entrustment/vo/EntrustAlterApplyVO.java index b7daa9f..b926457 100644 --- a/src/main/java/digital/laboratory/platform/entrustment/vo/EntrustAlterApplyVO.java +++ b/src/main/java/digital/laboratory/platform/entrustment/vo/EntrustAlterApplyVO.java @@ -30,6 +30,12 @@ public class EntrustAlterApplyVO { @ApiModelProperty(value = "关联的委托id") private String entrustId; + /** + * 关联的案件id + */ + @ApiModelProperty(value = "关联的案件id") + private String caseId; + /** * 关联的委托案件名称 */ diff --git a/src/main/resources/mapper/EntrustAlterApplyMapper.xml b/src/main/resources/mapper/EntrustAlterApplyMapper.xml index c633e30..5523852 100644 --- a/src/main/resources/mapper/EntrustAlterApplyMapper.xml +++ b/src/main/resources/mapper/EntrustAlterApplyMapper.xml @@ -28,7 +28,7 @@ - SELECT eaa.*, ce.case_name FROM + SELECT eaa.*, ce.case_name, ce.id as case_id FROM b_entrust_alter_apply eaa LEFT JOIN b_entrustment e ON eaa.entrust_id = e.id LEFT JOIN b_case_event ce ON ce.id = e.case_id