using Yw.Entity;
|
|
namespace HStation.Entity
|
{
|
/// <summary>
|
/// 业务站
|
/// </summary>
|
[SysType("assets_exchanger_coefficient")]
|
[SugarTable("assets_exchanger_coefficient")]
|
public class AssetsExchangerCoefficient : BaseEntity, System.ICloneable
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public AssetsExchangerCoefficient()
|
{ }
|
|
public AssetsExchangerCoefficient(AssetsExchangerCoefficient rhs)
|
{
|
this.ID = rhs.ID;
|
this.Name = rhs.Name;
|
this.Material = rhs.Material;
|
this.MinorLoss = rhs.MinorLoss;
|
}
|
|
public void Reset(AssetsExchangerCoefficient rhs)
|
{
|
this.ID = rhs.ID;
|
this.Name = rhs.Name;
|
this.Material = rhs.Material;
|
this.MinorLoss = rhs.MinorLoss;
|
}
|
|
/// <summary>
|
/// 名称
|
/// </summary>
|
public string Name { get; set; }
|
|
/// <summary>
|
/// 材料
|
/// </summary>
|
public string Material { get; set; }
|
|
/// <summary>
|
/// 局阻系数
|
/// </summary>
|
public double MinorLoss { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
public AssetsExchangerCoefficient Clone()
|
{
|
return (AssetsExchangerCoefficient)this.MemberwiseClone();
|
}
|
|
object ICloneable.Clone()
|
{
|
return this.MemberwiseClone();
|
}
|
}
|
}
|