using Yw.Entity; namespace HStation.Entity { /// /// 阀门型号产品映射 /// [SysType("assets-valve-main-part-mapping")] [SugarTable("assets_valve_main_part_mapping")] public class AssetsValveMainAndPartMapping : BaseEntity , System.ICloneable { /// /// /// public AssetsValveMainAndPartMapping() { } /// /// /// public AssetsValveMainAndPartMapping(AssetsValveMainAndPartMapping rhs) : base(rhs) { this.SeriesID = rhs.SeriesID; this.MainID = rhs.MainID; this.PartID = rhs.PartID; } /// /// 系列ID /// public long SeriesID { get; set; } /// /// 型号ID /// public long MainID { get; set; } /// /// 产品ID /// public long PartID { get; set; } /// /// /// public AssetsValveMainAndPartMapping Clone() { return (AssetsValveMainAndPartMapping)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }