username@email.com
2025-03-05 9eaaeff84fedc8424ee9c7ea31bfd60cc1e8ff4e
CY_ECommercePlatform/CY.Model/OA/OA_DeliverPlan.cs
@@ -139,6 +139,37 @@
            get;
            set;
        }
        /// <summary>
        /// 物流状态
        /// </summary>
        public int? Deliveredstatus
        {
            get;
            set;
        }
        /// <summary>
        /// 移交类型  1 客户经理  2 工厂物流部
        /// </summary>
        public int? TransferType
        {
            get;
            set;
        }
        /// <summary>
        /// 移交类型名称
        /// </summary>
        public string TransferName
        {
            get;
            set;
        }
        /// <summary>
        /// 移交时间
        /// </summary>
@@ -720,7 +751,24 @@
                this.CompanyName = isChange ? MyConvert.ConvertToString(value) : CompanyName;
                theValue = this.CompanyName;
            }
            else if ("Deliveredstatus".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 59)
            {
                this.Deliveredstatus = isChange ? MyConvert.ConvertToInt32(value) : Deliveredstatus;
                theValue = this.Deliveredstatus;
            }
            else if ("TransferType".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 60)
            {
                this.TransferType = isChange ? MyConvert.ConvertToInt32(value) : TransferType;
                theValue = this.TransferType;
            }
            else if ("TransferName".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 61)
            {
                this.TransferName = isChange ? MyConvert.ConvertToString(value) : TransferName;
                theValue = this.TransferName;
            }
            return theValue;