namespace Yw.Model { /// /// 重要程度 /// public class HealthImportance : BaseModel, 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 void Reset(HealthImportance rhs) { this.ID = rhs.ID; 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 new HealthImportance(this); } object ICloneable.Clone() { return Clone(); } } }