using Yw.Model.Hydro;
|
|
namespace Yw.WinFrmUI
|
{
|
/// <summary>
|
/// 水池属性视图
|
/// </summary>
|
public class HydroTankPropertyViewModel : HydroParterPropertyViewModel
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public HydroTankPropertyViewModel() { }
|
|
/// <summary>
|
///
|
/// </summary>
|
public HydroTankPropertyViewModel(Yw.Model.HydroTankInfo rhs) : base(rhs)
|
{
|
|
}
|
|
//
|
// 摘要:
|
// 初始水质
|
public double Quality { get; set; }
|
|
//
|
// 摘要:
|
// 2d 位置
|
public Position2d Position2d { get; set; }
|
|
//
|
// 摘要:
|
// 3d 位置
|
public Position3d Position3d { get; set; }
|
|
//
|
// 摘要:
|
// 池底标高
|
public double PoolElev { get; set; }
|
|
//
|
// 摘要:
|
// 初始水位
|
public double InitLevel { get; set; }
|
|
//
|
// 摘要:
|
// 最低水位
|
public double MinLevel { get; set; }
|
|
//
|
// 摘要:
|
// 最高水位
|
public double MaxLevel { get; set; }
|
|
//
|
// 摘要:
|
// 直径
|
public double Diameter { get; set; }
|
|
//
|
// 摘要:
|
// 最小容积
|
public double MinVol { get; set; }
|
|
//
|
// 摘要:
|
// 容积曲线
|
public string VolCurve { get; set; }
|
}
|
}
|