using Yw.Entity;
namespace HStation.Entity
{
///
///
///
[SysType("assets-package-part-prop-content")]
[SugarTable("assets_package_part_prop_content")]
public class AssetsPackagePropContent : BaseEntity , 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;
}
///
/// 系列ID
///
public long SeriesID { get; set; }
///
/// 产品ID
///
public long PartID { get; set; }
///
/// 属性ID
///
public long PropID { get; set; }
///
/// 属性值
///
[SugarColumn(Length = 255, IsNullable = true)]
public string PropValue { get; set; }
///
///
///
public AssetsPackagePropContent Clone()
{
return (AssetsPackagePropContent)this.MemberwiseClone();
}
object ICloneable.Clone()
{
return this.MemberwiseClone();
}
}
}