CY_ECommercePlatform/CY.Model/OA/CoreCmsPlanOrder.cs
@@ -245,6 +245,13 @@
        /// </summary>      
        public string biaoge { get; set; }
        /// <summary>
        /// 编号
        /// </summary>
        public int? Bianhao { get; set; }
        #endregion Model
        #region Visiter
@@ -395,6 +402,12 @@
                this.FirmId = isChange ? MyConvert.ConvertToGuid(value) : FirmId;
                theValue = this.FirmId;
            }
            else if ("Bianhao".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 22)
            {
                this.Bianhao = isChange ? MyConvert.ConvertToInt32(value) : Bianhao;
                theValue = this.Bianhao;
            }
            return theValue;
        }