namespace Yw.Entity { /// /// 重要程度 /// [SugarTable("health_importance")] public class HealthImportance : BaseEntity, ISorter, System.ICloneable { /// /// /// public HealthImportance() { } /// /// /// public HealthImportance(HealthImportance rhs) : base(rhs) { this.Name = rhs.Name; this.Weight = rhs.Weight; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } /// /// 名称 /// public string Name { get; set; } /// /// 权重 /// public int Weight { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 说明 /// public string Description { get; set; } /// /// /// public HealthImportance Clone() { return (HealthImportance)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }