using System; using System.Text; using System.Collections.Generic; using System.Data; using System.Runtime.Serialization; using System.ComponentModel.DataAnnotations; namespace IStation.Model { /// /// 测点映射 /// public partial class MonitorPointMapping : System.ICloneable { /// /// /// public MonitorPointMapping() { } /// /// /// public MonitorPointMapping(MonitorPointMapping rhs) { this.ID = rhs.ID; this.CorpID = rhs.CorpID; this.MonitorPointID = rhs.MonitorPointID; this.ObjectType = rhs.ObjectType; this.ObjectID = rhs.ObjectID; this.SortCode = rhs.SortCode; this.AccordParas = rhs.AccordParas; } /// /// /// public void Reset(MonitorPointMapping rhs) { this.ID = rhs.ID; this.CorpID = rhs.CorpID; this.MonitorPointID = rhs.MonitorPointID; this.ObjectType = rhs.ObjectType; this.ObjectID = rhs.ObjectID; this.SortCode = rhs.SortCode; this.AccordParas = rhs.AccordParas; } /// /// 标识 /// public long ID { get; set; } /// /// 客户标识 /// public long CorpID { get; set; } /// /// 测点标识 /// public long MonitorPointID { get; set; } /// /// 对象类型 /// public string ObjectType { get; set; } /// /// 对象标识 /// public long ObjectID { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 关联参数 /// public string AccordParas { get; set; } /// /// /// public MonitorPointMapping Clone() { return (MonitorPointMapping)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }