using Yw.Entity; namespace HStation.Entity { /// /// 泵产品映射 /// [SysType("assets_pump_main_part_mapping")] [SugarTable("assets_pump_main_part_mapping")] public class AssetsPumpMainAndPartMapping : BaseEntity, System.ICloneable { public AssetsPumpMainAndPartMapping() { } /// /// 系列ID /// public long SeriesID { get; set; } /// /// 型号ID /// public long MainID { get; set; } /// /// 产品ID /// public long PartID { get; set; } /// /// /// public AssetsPumpMain Clone() { return (AssetsPumpMain)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }