using System;
using System.Text;
using System.Collections.Generic;
using System.Data;
using System.Runtime.Serialization;
using SqlSugar;
namespace IStation.Entity
{
///
/// 周监测记录
///
[SugarTable("monitor_week_record")]
public class MonitorWeekRecord : CorpEntity, System.ICloneable
{
///
///
///
public MonitorWeekRecord() { }
///
///
///
public MonitorWeekRecord(MonitorWeekRecord rhs) : base(rhs)
{
this.MonitorPointID = rhs.MonitorPointID;
this.SignalID = rhs.SignalID;
this.RecordType = rhs.RecordType;
this.StartDay = rhs.StartDay;
this.EndDay = rhs.EndDay;
this.SrcTime = rhs.SrcTime;
this.SrcValue = rhs.SrcValue;
this.DataTime = rhs.DataTime;
this.DataValue = rhs.DataValue;
this.DataStatus = rhs.DataStatus;
}
///
/// 测点标识
///
public long MonitorPointID
{
get { return _monitorpointid; }
set { _monitorpointid = value; }
}
private long _monitorpointid;
///
/// 信号标识
///
public long SignalID
{
get { return _signalId; }
set { _signalId = value; }
}
private long _signalId;
///
/// 记录类型
///
public int RecordType
{
get { return _recordtype; }
set { _recordtype = value; }
}
private int _recordtype;
///
/// 开始日期
///
public DateTime StartDay
{
get { return _startday; }
set { _startday = value; }
}
private DateTime _startday;
///
/// 结束日期
///
public DateTime EndDay
{
get { return _endday; }
set { _endday = value; }
}
private DateTime _endday;
///
/// 原始时间
///
public DateTime SrcTime
{
get { return _srctime; }
set { _srctime = value; }
}
private DateTime _srctime;
///
/// 原始值
///
public string SrcValue
{
get { return _srcvalue; }
set { _srcvalue = value; }
}
private string _srcvalue;
///
/// 数据时间
///
public DateTime DataTime
{
get { return _datatime; }
set { _datatime = value; }
}
private DateTime _datatime;
///
/// 数据值
///
public string DataValue
{
get { return _datavalue; }
set { _datavalue = value; }
}
private string _datavalue;
///
/// 数据状态
///
public string DataStatus
{
get { return _datastatus; }
set { _datastatus = value; }
}
private string _datastatus;
///
///
///
public MonitorWeekRecord Clone()
{
return (MonitorWeekRecord)this.MemberwiseClone();
}
object ICloneable.Clone()
{
return this.MemberwiseClone();
}
}
}