namespace IStation.Entity
{
///
///
///
public class HydraulicScada : System.ICloneable
{
///
///
///
public HydraulicScada() { }
///
///
///
///
public HydraulicScada(HydraulicScada rhs)
{
this.VerificationID = rhs.VerificationID;
this.Time = rhs.Time;
this.Code = rhs.Code;
this.Tag = rhs.Tag;
this.Value = rhs.Value;
}
///
/// 调度请求标识
///
public long VerificationID { get; set; }
///
/// 时间
///
public DateTime Time { get; set; }
///
/// 唯一标识
///
public string Code { get; set; }
///
/// 标识
///
public string Tag { get; set; }
///
/// 值
///
public double? Value { get; set; }
///
///
///
///
public HydraulicScada Clone()
{
return (HydraulicScada)this.MemberwiseClone();
}
object ICloneable.Clone()
{
return this.MemberwiseClone();
}
}
}