From 84f9a6812122e59ba862d2e72c743b29c7ed5f48 Mon Sep 17 00:00:00 2001
From: username@email.com <yzy2002yzy@163.com>
Date: 星期三, 25 十二月 2024 08:42:13 +0800
Subject: [PATCH] 采购付款
---
CY_ECommercePlatform/CY.Model/EC/EC_OrderBasicExtend.cs | 12 ++++++++++++
1 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/CY_ECommercePlatform/CY.Model/EC/EC_OrderBasicExtend.cs b/CY_ECommercePlatform/CY.Model/EC/EC_OrderBasicExtend.cs
index dfe6cfe..31d4066 100644
--- a/CY_ECommercePlatform/CY.Model/EC/EC_OrderBasicExtend.cs
+++ b/CY_ECommercePlatform/CY.Model/EC/EC_OrderBasicExtend.cs
@@ -314,6 +314,11 @@
/// </summary>
public string BusinessManager { get; set; }
+ /// <summary>
+ /// 涓氬姟缁忕悊
+ /// </summary>
+ public int? BusinessManagerId { get; set; }
+
public DateTime? DelayTime { get; set; }
@@ -942,6 +947,13 @@
this.SuodanOperator = isChange ? MyConvert.ConvertToString(value) : this.SuodanOperator;
theValue = this.SuodanOperator;
}
+ else if ("BusinessManagerId".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 99)
+ {
+ this.BusinessManagerId = isChange ? MyConvert.ConvertToInt32(value) : this.BusinessManagerId;
+ theValue = this.BusinessManagerId;
+ }
+
+
#endregion
return theValue;
--
Gitblit v1.9.1