namespace Yw.Entity { /// /// 健康指数 (扣分制) /// [SugarTable("health_index")] public class HealthIndex : BaseEntity, System.ICloneable { /// /// /// public HealthIndex() { } /// /// /// public HealthIndex(HealthIndex rhs) : base(rhs) { this.Name = rhs.Name; this.ScoreType = rhs.ScoreType; this.MinValue = rhs.MinValue; this.MaxValue = rhs.MaxValue; this.Description = rhs.Description; } /// /// 名称 /// public string Name { get; set; } /// /// 计分制 /// public int ScoreType { get; set; } /// /// 下限 /// public int MinValue { get; set; } /// /// 上限 /// public int MaxValue { get; set; } /// /// 说明 /// public string Description { get; set; } /// /// /// public HealthIndex Clone() { return (HealthIndex)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }