namespace Yw.Model { /// /// 综合健康评价模型条件 /// public class HealthMultiEvaluationModelCondition : BaseModel, System.ICloneable { /// /// /// public HealthMultiEvaluationModelCondition() { } /// /// /// public HealthMultiEvaluationModelCondition(HealthMultiEvaluationModelCondition rhs) : base(rhs) { this.ModelID = rhs.ModelID; this.Name = rhs.Name; this.Flags = rhs.Flags?.ToList(); this.SignalTypeID = rhs.SignalTypeID; this.MinValue = rhs.MinValue; this.MaxValue = rhs.MaxValue; this.DefaultValue = rhs.DefaultValue; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } /// /// /// public void Reset(HealthMultiEvaluationModelCondition rhs) { this.ID = rhs.ID; this.ModelID = rhs.ModelID; this.Name = rhs.Name; this.Flags = rhs.Flags?.ToList(); this.SignalTypeID = rhs.SignalTypeID; this.MinValue = rhs.MinValue; this.MaxValue = rhs.MaxValue; this.DefaultValue = rhs.DefaultValue; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } /// /// 模型id /// public long ModelID { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 标签列表 /// public List Flags { get; set; } /// /// 信号类型 id /// public long SignalTypeID { get; set; } /// /// 最小值 /// public double? MinValue { get; set; } /// /// 最大值 /// public double? MaxValue { get; set; } /// /// 缺省值 /// public double DefaultValue { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 说明 /// public string Description { get; set; } /// /// /// public HealthMultiEvaluationModelCondition Clone() { return new HealthMultiEvaluationModelCondition(this); } object ICloneable.Clone() { return Clone(); } } }