using Yw.Model;
namespace HStation.Model
{
///
/// 泵图表映射
///
public class XhsPumpPhartMapping : BaseModel, System.ICloneable
{
///
///
///
public XhsPumpPhartMapping() { }
///
///
///
public XhsPumpPhartMapping(XhsPumpPhartMapping rhs) : base(rhs)
{
this.PumpID = rhs.PumpID;
this.DiagramID = rhs.DiagramID;
this.OtherName = rhs.OtherName;
this.Importance = rhs.Importance;
this.SortCode = rhs.SortCode;
}
///
///
///
public void Reset(XhsPumpPhartMapping rhs)
{
this.ID = rhs.ID;
this.PumpID = rhs.PumpID;
this.DiagramID = rhs.DiagramID;
this.OtherName = rhs.OtherName;
this.Importance = rhs.Importance;
this.SortCode = rhs.SortCode;
}
///
/// 泵 id
///
public long PumpID { get; set; }
///
/// 图表id
///
public long DiagramID { get; set; }
///
/// 别名
///
public string OtherName { get; set; }
///
/// 重要度
///
public int Importance { get; set; }
///
/// 排序码
///
public int SortCode { get; set; }
///
///
///
public XhsPumpPhartMapping Clone()
{
return new XhsPumpPhartMapping(this);
}
object ICloneable.Clone()
{
return this.Clone();
}
}
}