From f91e41ebc164213b74db7cac070f86fe6467df62 Mon Sep 17 00:00:00 2001 From: cjy Date: Thu, 22 Aug 2024 15:37:55 +0800 Subject: [PATCH] =?UTF-8?q?=E8=8E=B7=E5=8F=96=E8=88=B9=E5=85=AC=E5=8F=B8?= =?UTF-8?q?=E4=B8=8B=E6=8B=89=E5=88=97=E8=A1=A8=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ds-wms-service/DS.WMS.Core/Sys/Method/ClientCommonService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ds-wms-service/DS.WMS.Core/Sys/Method/ClientCommonService.cs b/ds-wms-service/DS.WMS.Core/Sys/Method/ClientCommonService.cs index ece3c7cc..0e492ebf 100644 --- a/ds-wms-service/DS.WMS.Core/Sys/Method/ClientCommonService.cs +++ b/ds-wms-service/DS.WMS.Core/Sys/Method/ClientCommonService.cs @@ -99,7 +99,7 @@ public class ClientCommonService : IClientCommonService .WhereIF(!string.IsNullOrEmpty(queryKey), a => a.Code.Contains(queryKey) || a.CnName.Contains(queryKey)) .Select(a => new CodeCarrierRes() { - PinYinCode = a.CnName + "(" + a.Code + ")", + PinYinCode = a.Code + "(" + a.CnName + ")", }, true) .Take(20)