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