From a941e4a9ab40887b1793e53aedf679bb65490be7 Mon Sep 17 00:00:00 2001 From: gxwebsoft <170083662@qq.com> Date: Fri, 6 Feb 2026 16:49:20 +0800 Subject: [PATCH] =?UTF-8?q?feat(credit):=20=E6=B7=BB=E5=8A=A0=E5=BD=93?= =?UTF-8?q?=E4=BA=8B=E4=BA=BA=E4=BF=A1=E6=81=AF=E5=AD=97=E6=AE=B5=E5=88=B0?= =?UTF-8?q?=E5=80=BA=E5=8A=A1=E4=BA=BA=E5=AE=9E=E4=BD=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 设置plaintiffAppellant字段值 - 设置appellee字段值 - 设置otherPartiesThirdParty字段值 - 支持上游XLS模板中的当事人姓名兼容性处理 --- .../credit/controller/CreditJudgmentDebtorController.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/java/com/gxwebsoft/credit/controller/CreditJudgmentDebtorController.java b/src/main/java/com/gxwebsoft/credit/controller/CreditJudgmentDebtorController.java index 3ffd325..993ef29 100644 --- a/src/main/java/com/gxwebsoft/credit/controller/CreditJudgmentDebtorController.java +++ b/src/main/java/com/gxwebsoft/credit/controller/CreditJudgmentDebtorController.java @@ -338,6 +338,9 @@ public class CreditJudgmentDebtorController extends BaseController { if (debtorName != null) { debtorName = debtorName.trim(); } + entity.setPlaintiffAppellant(param.getPlaintiffAppellant()); + entity.setAppellee(param.getAppellee()); + entity.setOtherPartiesThirdParty(param.getOtherPartiesThirdParty()); // Some upstream XLS templates store party/company name in "原告/上诉人/被告/第三人" columns. // When present, use them to populate the debtor "name" for compatibility. if (hasMeaningfulPartyValue(param.getPlaintiffAppellant())) {