using Yw.Entity; namespace HStation.Entity { /// /// 泵型号曲线映射 /// [SugarTable("assets_pump_main_phart_mapping")] public class XhsPumpMainPhartMapping : BaseEntity, ISorter, System.ICloneable { /// /// /// public XhsPumpMainPhartMapping() { } /// /// /// public XhsPumpMainPhartMapping(XhsPumpMainPhartMapping rhs) : base(rhs) { this.PumpMainID = rhs.PumpMainID; this.DiagramID = rhs.DiagramID; this.OtherName = rhs.OtherName; this.Importance = rhs.Importance; this.SortCode = rhs.SortCode; } /// /// 泵型号 id /// public long PumpMainID { get; set; } /// /// 图表id /// public long DiagramID { get; set; } /// /// 别名 /// public string OtherName { get; set; } /// /// 重要度 /// public int Importance { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// /// public XhsPumpMainPhartMapping Clone() { return (XhsPumpMainPhartMapping)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }