duheng
2025-03-14 a906f71640d9ba5cd9f8d689a51de3a557d8bbff
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 @@
        }
    }
}