namespace Yw.Entity
{
///
/// 综合评价模型
///
[SugarTable("health_multi_evaluation_model")]
public class HealthMultiEvaluationModel : BaseEntity, ITreeSorter, System.ICloneable
{
///
///
///
public HealthMultiEvaluationModel() { }
///
///
///
public HealthMultiEvaluationModel(HealthMultiEvaluationModel rhs) : base(rhs)
{
this.ParentIds = rhs.ParentIds;
this.Name = rhs.Name;
this.Method = rhs.Method;
this.Flags = rhs.Flags;
this.Weight = rhs.Weight;
this.Deduction = rhs.Deduction;
this.DefaultValue = rhs.DefaultValue;
this.SortCode = rhs.SortCode;
this.Description = rhs.Description;
}
///
/// 父级id列表
///
public string ParentIds { get; set; }
///
/// 名称
///
public string Name { get; set; }
///
/// 评价方法
///
public int Method { get; set; }
///
/// 标签列表
///
public string Flags { get; set; }
///
/// 权重
///
public int Weight { get; set; }
///
/// 扣分
///
public int Deduction { get; set; }
///
/// 默认扣分值
///
public double DefaultValue { get; set; }
///
/// 排序码
///
public int SortCode { get; set; }
///
/// 说明
///
public string Description { get; set; }
///
///
///
public HealthMultiEvaluationModel Clone()
{
return (HealthMultiEvaluationModel)this.MemberwiseClone();
}
object ICloneable.Clone()
{
return this.MemberwiseClone();
}
}
}