lixiaojun
2025-01-22 46f64905a3c309a50c0f245b3350cdeb8dd699c6
WinFrmUI/Yw.WinFrmUI.Hydro.Core/04-viewmodel/04-link/00-core/HydroLinkViewModel.cs
@@ -17,7 +17,6 @@
        {
            this.StartCode = rhs.StartCode;
            this.EndCode = rhs.EndCode;
            //this.LinkStatus = HydroLinkStatusHelper.GetStatusName(rhs.LinkStatus);
        }
@@ -42,15 +41,6 @@
        [ReadOnly(true)]
        [Browsable(true)]
        public string EndCode { get; set; }
        ///// <summary>
        ///// 管段状态
        ///// </summary>
        //[Category("数据")]
        //[DisplayName("管段状态")]
        //[PropertyOrder(1003)]
        //[Browsable(false)]
        //public virtual string LinkStatus { get; set; }
        /// <summary>
        /// 流量
@@ -135,7 +125,6 @@
            base.UpdateProperty();
            this.StartCode = this.Vmo.StartCode;
            this.EndCode = this.Vmo.EndCode;
            //this.LinkStatus = HydroLinkStatusHelper.GetStatusName(this.Vmo.LinkStatus);
        }
        /// <summary>
@@ -146,7 +135,6 @@
            base.UpdateVmoProperty();
            this.Vmo.StartCode = this.StartCode;
            this.Vmo.EndCode = this.EndCode;
            //this.Vmo.LinkStatus = HydroLinkStatusHelper.GetStatusCode(this.LinkStatus);
        }
        /// <summary>
@@ -166,5 +154,8 @@
        }
    }
}