namespace HStation.Entity
|
{
|
/// <summary>
|
/// 项目属性值
|
/// </summary>
|
[SugarTable("xhs_project_prop_value")]
|
public class XhsProjectPropValue : Yw.Entity.BaseEntity, System.ICloneable
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public XhsProjectPropValue() { }
|
|
/// <summary>
|
///
|
/// </summary>
|
public XhsProjectPropValue(XhsProjectPropValue rhs) : base(rhs)
|
{
|
this.SysType = rhs.SysType;
|
this.SysID = rhs.SysID;
|
this.PropID = rhs.PropID;
|
this.PropValue = rhs.PropValue;
|
}
|
|
/// <summary>
|
/// 系统类型
|
/// </summary>
|
[SugarColumn(Length = 50, IsNullable = true)]
|
public string SysType { get; set; }
|
|
/// <summary>
|
/// 系统id
|
/// </summary>
|
public long SysID { get; set; }
|
|
/// <summary>
|
/// 属性id
|
/// </summary>
|
public long PropID { get; set; }
|
|
/// <summary>
|
/// 属性值
|
/// </summary>
|
[SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)]
|
public string PropValue { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
public XhsProjectPropValue Clone()
|
{
|
return (XhsProjectPropValue)this.MemberwiseClone();
|
}
|
|
object ICloneable.Clone()
|
{
|
return this.MemberwiseClone();
|
}
|
}
|
|
}
|