namespace Yw.WinFrmUI { /// /// /// public class HydroThreelinkBulkSetViewModel : HydroCouplingBulkSetViewModel { /// /// /// public HydroThreelinkBulkSetViewModel() : base() { } /// /// /// public HydroThreelinkBulkSetViewModel(Yw.Model.HydroThreelinkInfo rhs) : base(rhs) { this.RunningThroughLoss = rhs.RunningThroughLoss; this.BranchThroughLoss = rhs.BranchThroughLoss; this.Vmo = rhs; } /// /// 运行通过 /// [DisplayName("运行通过")] public double? RunningThroughLoss { get; set; } /// /// 支管通过 /// [DisplayName("支管通过")] public double? BranchThroughLoss { get; set; } /// /// /// public new Yw.Model.HydroThreelinkInfo Vmo { get; set; } } }