namespace IStation.Entity
{
///
///
///
public class HydraulicModelScada : System.ICloneable
{
///
///
///
public HydraulicModelScada() { }
///
///
///
///
public HydraulicModelScada(HydraulicModelScada 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 HydraulicModelScada Clone()
{
return (HydraulicModelScada)this.MemberwiseClone();
}
object ICloneable.Clone()
{
return this.MemberwiseClone();
}
}
}