using Yw.Entity; namespace HStation.Entity { /// /// 图形 /// [SugarTable("xhs_phart_graph")] public class XhsPhartGraph : BaseEntity, IParas, IFlags, ISorter, System.ICloneable { /// /// /// public XhsPhartGraph() { } /// /// /// public XhsPhartGraph(XhsPhartGraph rhs) : base(rhs) { this.DiagramID = rhs.DiagramID; this.Name = rhs.Name; this.GraphType = rhs.GraphType; this.GraphParas = rhs.GraphParas; this.GraphInfo = rhs.GraphInfo; this.GeometryStyle = rhs.GeometryStyle; this.GeometryParas = rhs.GeometryParas; this.GeometryInfo = rhs.GeometryInfo; this.DispParas = rhs.DispParas; this.ExtraParas = rhs.ExtraParas; this.Paras = rhs.Paras; this.Flags = rhs.Flags; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } /// /// 图表id /// public long DiagramID { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 图形类型 /// public int GraphType { get; set; } /// /// 图形参数 /// public string GraphParas { get; set; } /// /// 图形信息 /// public string GraphInfo { get; set; } /// /// 几何类型 /// public int GeometryStyle { get; set; } /// /// 几何参数 /// public string GeometryParas { get; set; } /// /// 几何信息 /// public string GeometryInfo { get; set; } /// /// 显示参数 /// public string DispParas { get; set; } /// /// 拓展参数 /// public string ExtraParas { get; set; } /// /// 参数 /// public string Paras { get; set; } /// /// 标签 /// public string Flags { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 说明 /// public string Description { get; set; } /// /// /// public XhsPhartGraph Clone() { return (XhsPhartGraph)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }