using Yw.Model;
|
|
namespace HStation.Model
|
{
|
/// <summary>
|
/// 业务站
|
/// </summary>
|
[SysType("assets_threelink_main")]
|
public class AssetsThreelinkMain : BaseModel, ISorter, System.ICloneable
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public AssetsThreelinkMain()
|
{ }
|
|
public AssetsThreelinkMain(AssetsThreelinkMain rhs)
|
{
|
this.ID = rhs.ID;
|
this.SeriesID = rhs.SeriesID;
|
this.Coefficient = rhs.Coefficient;
|
this.Caliber = rhs.Caliber;
|
this.KeyWord = rhs.KeyWord;
|
this.IsDefault = rhs.IsDefault;
|
this.MaterialName = rhs.MaterialName;
|
this.SortCode = rhs.SortCode;
|
this.Name = rhs.Name;
|
this.Description = rhs.Description;
|
this.RunThroughCoefficient = rhs.RunThroughCoefficient;
|
this.BranchThroughCoefficient = rhs.BranchThroughCoefficient;
|
}
|
|
public void Reset(AssetsThreelinkMain rhs)
|
{
|
this.ID = rhs.ID;
|
this.SeriesID = rhs.SeriesID;
|
this.Coefficient = rhs.Coefficient;
|
this.Caliber = rhs.Caliber;
|
this.MaterialName = rhs.MaterialName;
|
this.KeyWord = rhs.KeyWord;
|
this.IsDefault = rhs.IsDefault;
|
this.SortCode = rhs.SortCode;
|
this.Name = rhs.Name;
|
this.Description = rhs.Description;
|
this.RunThroughCoefficient = rhs.RunThroughCoefficient;
|
this.BranchThroughCoefficient = rhs.BranchThroughCoefficient;
|
}
|
|
/// <summary>
|
/// 系列ID
|
/// </summary>
|
public long SeriesID { get; set; }
|
|
/// <summary>
|
/// 名称
|
/// </summary>
|
public string Name { get; set; }
|
|
/// <summary>
|
/// 口径
|
/// </summary>
|
public double? Caliber { get; set; }
|
|
/// <summary>
|
/// 材料
|
/// </summary>
|
public string MaterialName { get; set; }
|
|
/// <summary>
|
/// 系数
|
/// </summary>
|
public double? Coefficient { get; set; }
|
|
/// <summary>
|
/// 运行通过损失系数
|
/// </summary>
|
public double? RunThroughCoefficient { get; set; }
|
|
/// <summary>
|
/// 支管通过损失系数
|
/// </summary>
|
public double? BranchThroughCoefficient { get; set; }
|
|
/// <summary>
|
/// 排序码
|
/// </summary>
|
public int SortCode { get; set; }
|
|
/// <summary>
|
/// 识别关键字
|
/// </summary>
|
public string KeyWord { get; set; }
|
|
/// <summary>
|
/// 是否默认
|
/// </summary>
|
public bool IsDefault { get; set; }
|
|
/// <summary>
|
/// 说明
|
/// </summary>
|
public string Description { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
public AssetsPumpGroupAndMainMap Clone()
|
{
|
return (AssetsPumpGroupAndMainMap)this.MemberwiseClone();
|
}
|
|
object ICloneable.Clone()
|
{
|
return this.MemberwiseClone();
|
}
|
}
|
}
|