using System;
|
using System.Text;
|
using System.Collections.Generic;
|
using System.Data;
|
using System.Runtime.Serialization;
|
using System.ComponentModel.DataAnnotations;
|
|
namespace IStation.Model
|
{
|
/// <summary>
|
/// 监测波动配置
|
/// </summary>
|
public partial class MonitorFluctConfigure : System.ICloneable
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public MonitorFluctConfigure() { }
|
|
/// <summary>
|
///
|
/// </summary>
|
public MonitorFluctConfigure(MonitorFluctConfigure rhs)
|
{
|
this.ID = rhs.ID;
|
this.CorpID = rhs.CorpID;
|
this.MonitorPointID = rhs.MonitorPointID;
|
this.SignalID = rhs.SignalID;
|
this.ContinueDays = rhs.ContinueDays;
|
this.UseStatus = rhs.UseStatus;
|
this.Description = rhs.Description;
|
|
}
|
|
/// <summary>
|
///
|
/// </summary>
|
/// <param name="rhs"></param>
|
public void Reset(MonitorFluctConfigure rhs)
|
{
|
this.ID = rhs.ID;
|
this.CorpID = rhs.CorpID;
|
this.MonitorPointID = rhs.MonitorPointID;
|
this.SignalID = rhs.SignalID;
|
this.ContinueDays = rhs.ContinueDays;
|
this.UseStatus = rhs.UseStatus;
|
this.Description = rhs.Description;
|
|
}
|
|
/// <summary>
|
/// 标识
|
/// </summary>
|
public long ID { get; set; }
|
|
/// <summary>
|
/// 客户标识
|
/// </summary>
|
public long CorpID { get; set; }
|
|
/// <summary>
|
/// 测点标识
|
/// </summary>
|
public long MonitorPointID { get; set; }
|
|
/// <summary>
|
/// 信号标识
|
/// </summary>
|
public long SignalID { get; set; }
|
|
/// <summary>
|
/// 持续天数
|
/// </summary>
|
public int ContinueDays { get; set; }
|
|
/// <summary>
|
/// 使用状态
|
/// </summary>
|
public eUseStatus UseStatus { get; set; }
|
|
/// <summary>
|
/// 说明
|
/// </summary>
|
public string Description { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
public MonitorFluctConfigure Clone()
|
{
|
return (MonitorFluctConfigure)this.MemberwiseClone();
|
}
|
|
object ICloneable.Clone()
|
{
|
return this.MemberwiseClone();
|
}
|
}
|
|
}
|