namespace Yw.Dto { /// /// /// public class RunAnalyConfigureStdDto { /// /// /// public RunAnalyConfigureStdDto() { } /// /// /// public RunAnalyConfigureStdDto(Model.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; } /// /// Id /// public long ID { get; set; } /// /// 数据类型 /// 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; } } }