using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Entity { /// /// 性能曲线分析结构 /// public partial class CurveAnaStructure : BaseModel { public CurveAnaStructure() { } public CurveAnaStructure(CurveAnaStructure rhs) : base(rhs) { this.ParentIds = rhs.ParentIds; this.Name = rhs.Name; this.Catalog = rhs.Catalog; this.SerialNo = rhs.SerialNo; this.TagName = rhs.TagName; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } public void Reset(CurveAnaStructure rhs) { this.Id = rhs.Id; this.ParentIds = rhs.ParentIds; this.Name = rhs.Name; this.Catalog = rhs.Catalog; this.SerialNo = rhs.SerialNo; this.TagName = rhs.TagName; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } /// /// 父节点Id /// public List ParentIds { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 类别 /// public string Catalog { get; set; } /// /// 下标 /// public int SerialNo { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 标签 /// public string TagName { get; set; } /// /// 备注 /// public string Description { get; set; } } }