using Yw.Entity;
namespace HStation.Entity
{
///
/// 水池系数
///
[SysType("assets-tank-coefficient")]
[SugarTable("assets_tank_coefficient")]
public class AssetsTankCoefficient : BaseEntity, System.ICloneable
{
///
///
///
public AssetsTankCoefficient()
{ }
///
///
///
public AssetsTankCoefficient(AssetsTankCoefficient rhs) : base(rhs)
{
this.Name = rhs.Name;
this.MainID = rhs.MainID;
this.Caliber = rhs.Caliber;
this.Material = rhs.Material;
this.MinorLoss = rhs.MinorLoss;
this.VolCurve = rhs.VolCurve;
}
///
/// 名称
///
[SugarColumn(Length = 50, IsNullable = true)]
public string Name { get; set; }
///
/// 型号ID
///
public long MainID { get; set; }
///
/// 口径
///
public double? Caliber { get; set; }
///
/// 材料
///
[SugarColumn(Length = 255, IsNullable = true)]
public string Material { get; set; }
///
/// 局阻系数
///
public double MinorLoss { get; set; }
///
/// 容积曲线
///
public string VolCurve { get; set; }
///
///
///
public AssetsTankCoefficient Clone()
{
return (AssetsTankCoefficient)this.MemberwiseClone();
}
object ICloneable.Clone()
{
return this.MemberwiseClone();
}
}
}