namespace Yw.Entity { /// /// 运行分析配置 /// [SugarTable("run_analy_configure")] public class RunAnalyConfigure : BaseEntity, 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 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 (RunAnalyConfigure)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }