namespace Yw.Model
{
///
/// 运行分析配置
///
public class RunAnalyConfigure : BaseModel, System.ICloneable
{
///
///
///
public RunAnalyConfigure() { }
///
///
///
public RunAnalyConfigure(RunAnalyConfigure rhs) : base(rhs)
{
this.ObjectType = rhs.ObjectType;
this.ObjectID = rhs.ObjectID;
this.Frequency = rhs.Frequency;
this.ChangeTimes = rhs.ChangeTimes;
this.Description = rhs.Description;
}
///
///
///
public void Reset(RunAnalyConfigure rhs)
{
this.ID = rhs.ID;
this.ObjectType = rhs.ObjectType;
this.ObjectID = rhs.ObjectID;
this.Frequency = rhs.Frequency;
this.ChangeTimes = rhs.ChangeTimes;
this.Description = rhs.Description;
}
///
/// 数据类型
///
public string ObjectType { get; set; }
///
/// 数据id
///
public long ObjectID { get; set; }
///
/// 分析频率
///
public int Frequency { get; set; }
///
/// 切换次数
///
public int ChangeTimes { get; set; }
///
/// 说明
///
public string Description { get; set; }
///
///
///
public RunAnalyConfigure Clone()
{
return new RunAnalyConfigure(this);
}
object ICloneable.Clone()
{
return Clone();
}
}
}