using Yw.Model; namespace HStation.Model { /// /// 泵属性值 /// [SysType("assets_pump_part_prop_content")] public class AssetsPumpPropContent : BaseModel, System.ICloneable { public AssetsPumpPropContent() { } public AssetsPumpPropContent(AssetsPumpPropContent rhs) { this.SeriesID = rhs.SeriesID; this.PropID = rhs.PropID; this.ID = rhs.ID; this.PartID = rhs.PartID; this.PropValue = rhs.PropValue; } public void Reset(AssetsPumpPropContent rhs) { this.SeriesID = rhs.SeriesID; this.PropID = rhs.PropID; this.ID = rhs.ID; this.PartID = rhs.PartID; this.PropValue = rhs.PropValue; } /// /// 泵系列ID /// public long SeriesID { get; set; } /// /// 泵产品ID /// public long PartID { get; set; } /// /// 属性ID /// public long PropID { get; set; } /// /// 属性值 /// public string PropValue { get; set; } /// /// /// public AssetsPumpMain Clone() { return (AssetsPumpMain)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }