using Yw.Entity; namespace HStation.Entity { /// /// 项目站 /// [SysType("xhs-project-site")] [SysPropValueTable("xhs_project_site_prop_value")] [SugarTable("xhs_project_site")] public class XhsProjectSite : BaseEntity, IParas, IFlags, ISorter, IUseStatus, System.ICloneable { /// /// /// public XhsProjectSite() { } /// /// /// public XhsProjectSite(XhsProjectSite rhs) : base(rhs) { this.ProjectID = rhs.ProjectID; this.Name = rhs.Name; this.Paras = rhs.Paras; this.Flags = rhs.Flags; this.UseStatus = rhs.UseStatus; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } /// /// 项目id /// public long ProjectID { get; set; } /// /// 名称 /// [SugarColumn(Length = 50, IsNullable = true)] public string Name { get; set; } /// /// 参数 /// [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)] public string Paras { get; set; } /// /// 标签 /// [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)] public string Flags { get; set; } /// /// 使用状态 /// public int UseStatus { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 说明 /// [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)] public string Description { get; set; } /// /// /// public XhsProjectSite Clone() { return (XhsProjectSite)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }