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