namespace HStation.Entity
|
{
|
/// <summary>
|
/// 项目方案属性值
|
/// </summary>
|
[SugarTable("xhs_scheme_prop_value")]
|
public class XhsSchemePropValue : Yw.Entity.BaseEntity, System.ICloneable
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public XhsSchemePropValue() { }
|
|
/// <summary>
|
///
|
/// </summary>
|
public XhsSchemePropValue(XhsSchemePropValue 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 XhsSchemePropValue Clone()
|
{
|
return (XhsSchemePropValue)this.MemberwiseClone();
|
}
|
|
object ICloneable.Clone()
|
{
|
return this.MemberwiseClone();
|
}
|
}
|
|
}
|