using Yw.Model;
|
|
namespace HStation.Model
|
{
|
/// <summary>
|
/// 管道管理
|
/// </summary>
|
[SysType("xhs_pipelineManage")]
|
[SugarTable("xhs_pipelineManage")]
|
public class PipeLineManage : BaseModel, ISorter, System.ICloneable
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public PipeLineManage()
|
{ }
|
|
public PipeLineManage(PipeLineManage rhs)
|
{
|
this.Caliber = rhs.Caliber;
|
this.ID = rhs.ID;
|
this.Name = rhs.Name;
|
this.Material = rhs.Material;
|
this.Manning = rhs.Manning;
|
this.Coefficient = rhs.Coefficient;
|
this.Darcy = rhs.Darcy;
|
this.Hazen = rhs.Hazen;
|
this.SortCode = rhs.SortCode;
|
this.Description = rhs.Description;
|
}
|
|
public void Reset(PipeLineManage rhs)
|
{
|
this.Caliber = rhs.Caliber;
|
this.ID = rhs.ID;
|
this.Name = rhs.Name;
|
this.Material = rhs.Material;
|
this.Manning = rhs.Manning;
|
this.Coefficient = rhs.Coefficient;
|
this.Darcy = rhs.Darcy;
|
this.Hazen = rhs.Hazen;
|
this.SortCode = rhs.SortCode;
|
this.Description = rhs.Description;
|
}
|
|
/// <summary>
|
/// 名称
|
/// </summary>
|
public string Name { get; set; }
|
|
/// <summary>
|
/// 口径
|
/// </summary>
|
public string Caliber { get; set; }
|
|
/// <summary>
|
/// 材料
|
/// </summary>
|
public string Material { get; set; }
|
|
/// <summary>
|
/// 系数
|
/// </summary>
|
public string Coefficient { get; set; }
|
|
/// <summary>
|
///Hazen
|
/// </summary>
|
public string Hazen { get; set; }
|
|
/// <summary>
|
///Darcy
|
/// </summary>
|
public string Darcy { get; set; }
|
|
/// <summary>
|
///Manning
|
/// </summary>
|
public string Manning { get; set; }
|
|
/// <summary>
|
/// 排序码
|
/// </summary>
|
public int SortCode { get; set; }
|
|
/// <summary>
|
/// 说明
|
/// </summary>
|
public string Description { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
public PumpGroupAndMainMap Clone()
|
{
|
return (PumpGroupAndMainMap)this.MemberwiseClone();
|
}
|
|
object ICloneable.Clone()
|
{
|
return this.MemberwiseClone();
|
}
|
}
|
}
|