using Yw.Entity;
namespace HStation.Entity
{
///
/// 阀门型号曲线映射
///
[SugarTable("assets_valve_main_phart_mapping")]
public class XhsValveMainPhartMapping : BaseEntity, ISorter, 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;
}
///
/// 阀门型号 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 (XhsValveMainPhartMapping)this.MemberwiseClone();
}
object ICloneable.Clone()
{
return this.MemberwiseClone();
}
}
}