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 EtaSingleRealRecord : EtaSingleRealRecordPure, System.ICloneable { /// /// /// public EtaSingleRealRecord() { } /// /// /// public EtaSingleRealRecord(EtaSingleRealRecord rhs) : base(rhs) { this.ID = rhs.ID; } /// /// 标识 /// public long ID { get; set; } /// /// /// public EtaSingleRealRecord Clone() { return new EtaSingleRealRecord(this); } object ICloneable.Clone() { return this.Clone(); } } }