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