using Yw.Model; namespace HStation.Model { /// /// /// [SysType("assets-package-part-prop-content")] public class AssetsPackagePropContent : BaseModel, System.ICloneable { /// /// /// public AssetsPackagePropContent() { } /// /// /// public AssetsPackagePropContent(AssetsPackagePropContent rhs) : base(rhs) { this.SeriesID = rhs.SeriesID; this.PartID = rhs.PartID; this.PropID = rhs.PropID; this.PropValue = rhs.PropValue; } /// /// /// public void Reset(AssetsPackagePropContent rhs) { this.ID = rhs.ID; this.SeriesID = rhs.SeriesID; this.PartID = rhs.PartID; this.PropID = rhs.PropID; 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 AssetsPackagePropContent Clone() { return (AssetsPackagePropContent)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }