using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SqlSugar;
namespace IStation.Entity
{
///
/// 能效业务实时记录
///
[SugarTable("eta_logic_real_record")]
public class EtaLogicRealRecord : CorpEntity, System.ICloneable
{
///
///
///
public EtaLogicRealRecord() { }
///
///
///
public EtaLogicRealRecord(EtaLogicRealRecord rhs) : base(rhs)
{
this.ObjectType = rhs.ObjectType;
this.ObjectID = rhs.ObjectID;
this.DataTime = rhs.DataTime;
this.Duration = rhs.Duration;
this.Qa = rhs.Qa;
this.Ha = rhs.Ha;
this.Pa = rhs.Pa;
this.Ea = rhs.Ea;
this.WPa = rhs.WPa;
this.UWPa = rhs.UWPa;
this.AnalyStatus = rhs.AnalyStatus;
this.AnalyInfo = rhs.AnalyInfo;
}
///
/// 对象类型
///
public string ObjectType { get; set; }
///
/// 对象标识
///
public long ObjectID { get; set; }
///
/// 数据时间
///
public DateTime DataTime { get; set; }
///
/// 时间间隔 (秒)
///
public int Duration { get; set; }
///
/// 瞬时流量
///
public double? Qa { get; set; }
///
/// 扬程
///
public double? Ha { get; set; }
///
/// 瞬时功率
///
public double? Pa { get; set; }
///
/// 效率
///
public double? Ea { get; set; }
///
/// 千吨能耗
///
public double? WPa { get; set; }
///
/// 单位能耗
///
public double? UWPa { get; set; }
///
/// 分析状态
///
public int AnalyStatus { get; set; }
///
/// 分析信息
///
public string AnalyInfo { get; set; }
///
///
///
public EtaLogicRealRecord Clone()
{
return (EtaLogicRealRecord)this.MemberwiseClone();
}
object ICloneable.Clone()
{
return this.MemberwiseClone();
}
}
}