namespace Yw.Model
{
///
/// 指标评价模型
///
public partial class HealthQuotaEvaluationModel : BaseModel, System.ICloneable
{
///
///
///
public HealthQuotaEvaluationModel() { }
///
///
///
public HealthQuotaEvaluationModel(HealthQuotaEvaluationModel rhs) : base(rhs)
{
this.Name = rhs.Name;
this.Way = rhs.Way;
this.Evaluation = rhs.Evaluation;
this.DefaultValue = rhs.DefaultValue;
this.SortCode = rhs.SortCode;
this.Description = rhs.Description;
}
///
///
///
public void Reset(HealthQuotaEvaluationModel rhs)
{
this.ID = rhs.ID;
this.Name = rhs.Name;
this.Way = rhs.Way;
this.Evaluation = rhs.Evaluation;
this.DefaultValue = rhs.DefaultValue;
this.SortCode = rhs.SortCode;
this.Description = rhs.Description;
}
///
/// 名称
///
public string Name { get; set; }
///
/// 评价方式
///
public eEvaluateWay Way { get; set; }
///
/// 评价标准(自动评价:指标信号至健康值的换算关系;人工评价:人工判断的依据描述信息)
///
public string Evaluation { get; set; }
///
/// 缺省值
///
public double DefaultValue { get; set; }
///
/// 排序码
///
public int SortCode { get; set; }
///
/// 说明
///
public string Description { get; set; }
///
///
///
public HealthQuotaEvaluationModel Clone()
{
return new HealthQuotaEvaluationModel(this);
}
object ICloneable.Clone()
{
return Clone();
}
}
}