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