From 279782766afb71658d17e8e628494288b4de1369 Mon Sep 17 00:00:00 2001 From: cjy Date: Fri, 16 Aug 2024 19:01:55 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A7=94=E6=89=98=E5=8D=95=E4=BD=8D=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Info/Dtos/ControllerClientRes.cs | 34 ++++++++----------- 1 file changed, 15 insertions(+), 19 deletions(-) diff --git a/ds-wms-service/DS.WMS.Core/Info/Dtos/ControllerClientRes.cs b/ds-wms-service/DS.WMS.Core/Info/Dtos/ControllerClientRes.cs index a1d2331e..286c7d53 100644 --- a/ds-wms-service/DS.WMS.Core/Info/Dtos/ControllerClientRes.cs +++ b/ds-wms-service/DS.WMS.Core/Info/Dtos/ControllerClientRes.cs @@ -62,41 +62,37 @@ namespace DS.WMS.Core.Info.Dtos /// public string SourceDetailName { get; set; } /// - /// Desc:所属揽货人 + /// 揽货人Id /// - public long SaleId { get; set; } - + public long? SaleId { get; set; } /// - /// Desc:所属操作人 + /// 揽货人 /// - public long Op { get; set; } - + public string Sale { get; set; } /// - /// Desc:所属单证 + /// Desc:单证 /// - public long Doc { get; set; } + public long? Doc { get; set; } /// - /// Desc: 客服 + /// Desc:单证人员 /// - public long CustomerService { get; set; } + public string DocName { get; set; } /// - /// 揽货人名字 + /// 操作员 /// - public string SaleName { get; set; } - + public long? OperatorId { get; set; } /// - /// 操作名字 + /// 操作员名称 /// - public string OpName { get; set; } - + public string OperatorName { get; set; } /// - /// 单证名字 + /// 客服 /// - public string DocName { get; set; } + public long? CustomerService { get; set; } /// - /// 客服名字 + /// 客服名称 /// public string CustomerServiceName { get; set; }