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