using System; using System.Text; using System.Collections.Generic; using System.Data; using System.Runtime.Serialization; using System.ComponentModel.DataAnnotations; namespace IStation.Entity { /// /// 分析结构映射 /// public partial class CurveAnaStructureMapping : BaseModel { /// /// /// public CurveAnaStructureMapping() { } /// /// /// public CurveAnaStructureMapping(CurveAnaStructureMapping rhs):base(rhs) { this.CurveAnaStructureId = rhs.CurveAnaStructureId; this.ObjectType = rhs.ObjectType; this.ObjectId = rhs.ObjectId; this.SortCode = rhs.SortCode; this.AccordParas = rhs.AccordParas; } /// /// /// public void Reset(CurveAnaStructureMapping rhs) { this.Id = rhs.Id; this.CurveAnaStructureId = rhs.CurveAnaStructureId; this.ObjectType = rhs.ObjectType; this.ObjectId = rhs.ObjectId; this.SortCode = rhs.SortCode; this.AccordParas = rhs.AccordParas; } /// /// 结构 Id /// public long CurveAnaStructureId { get; set; } /// /// 对象类型 /// public string ObjectType { get; set; } /// /// 对象 Id /// public long ObjectId { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 关联参数 /// public string AccordParas { get; set; } } }