From f1c7dd453bb446047c9fa8d7236f66c01bc9fcd3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A7=A6=E9=B8=BF=E5=B1=95?= <18031053041@163.com> Date: Mon, 13 Jul 2026 14:47:10 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=8C=E6=AD=A5=E8=BF=87=E6=BB=A4=E9=80=BB?= =?UTF-8?q?=E8=BE=91=E4=BF=AE=E6=94=B91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../application/service/UserShipperMasterDataSyncService.java | 2 +- .../application/server/MdmMasterDataApplicationService.java | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/mhd-user-center/src/main/java/com/mhd/user/application/service/UserShipperMasterDataSyncService.java b/mhd-user-center/src/main/java/com/mhd/user/application/service/UserShipperMasterDataSyncService.java index 750448c17..bd7ab442b 100644 --- a/mhd-user-center/src/main/java/com/mhd/user/application/service/UserShipperMasterDataSyncService.java +++ b/mhd-user-center/src/main/java/com/mhd/user/application/service/UserShipperMasterDataSyncService.java @@ -177,7 +177,7 @@ public class UserShipperMasterDataSyncService { continue; } try { - String ncCode = trimToEmpty(record.getDesc17()); + String ncCode = trimToEmpty(record.getCode()); String companyName = trimToEmpty(record.getDesc1()); String matchKey = UserShipperApplicationService.buildMasterDataMatchKey(ncCode, companyName); Long targetOrganizationId = MdmMerchantSyncFilter.resolveSaveOrganizationId(record, organizationId); diff --git a/mhd_thrid_party/src/main/java/com/linke/thirdParty/application/server/MdmMasterDataApplicationService.java b/mhd_thrid_party/src/main/java/com/linke/thirdParty/application/server/MdmMasterDataApplicationService.java index f6ced87b9..4a6ad3be2 100644 --- a/mhd_thrid_party/src/main/java/com/linke/thirdParty/application/server/MdmMasterDataApplicationService.java +++ b/mhd_thrid_party/src/main/java/com/linke/thirdParty/application/server/MdmMasterDataApplicationService.java @@ -210,6 +210,7 @@ public class MdmMasterDataApplicationService { record.setDesc14(item.getString("DESC14")); record.setDesc15(item.getString("DESC15")); record.setDesc16(item.getString("DESC16")); + record.setDesc17(item.getString("DESC17")); record.setDesc23(item.getString("DESC23")); record.setDesc24(item.getString("DESC24")); record.setDesc25(item.getString("DESC25"));