using Yw.Model;
namespace HStation.Model
{
///
/// 业务站
///
[SysType("assets_sprinkler_coefficient")]
public class AssetsSprinklerCoefficient : BaseModel, System.ICloneable
{
///
///
///
public AssetsSprinklerCoefficient()
{ }
public AssetsSprinklerCoefficient(AssetsSprinklerCoefficient rhs)
{
this.ID = rhs.ID;
this.Name = rhs.Name;
this.Caliber = rhs.Caliber;
this.Material = rhs.Material;
this.MinorLoss = rhs.MinorLoss;
this.FlowMinorLoss = rhs.FlowMinorLoss;
}
public void Reset(AssetsSprinklerCoefficient rhs)
{
this.ID = rhs.ID;
this.Name = rhs.Name;
this.Caliber = rhs.Caliber;
this.Material = rhs.Material;
this.MinorLoss = rhs.MinorLoss;
this.FlowMinorLoss = rhs.FlowMinorLoss;
}
///
/// 名称
///
public string Name { get; set; }
///
/// 口径
///
public double? Caliber { get; set; }
///
/// 材料
///
public string Material { get; set; }
///
/// 喷射系数
///
public double MinorLoss { get; set; }
///
/// 流量系数
///
public double? FlowMinorLoss { get; set; }
///
///
///
public AssetsSprinklerCoefficient Clone()
{
return (AssetsSprinklerCoefficient)this.MemberwiseClone();
}
object ICloneable.Clone()
{
return this.MemberwiseClone();
}
}
}