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