namespace Yw.Application { /// /// /// public class HealthResultSelectDto { /// /// /// public HealthResultSelectDto() { } /// /// /// public HealthResultSelectDto(Model.HealthResult rhs) { this.ID = rhs.ID; this.ShortName = rhs.ShortName; this.FullName = rhs.FullName; this.Severity = rhs.Severity; this.Color = rhs.Color; this.RangeValue = rhs.GetRangeValue(); this.SortCode = rhs.SortCode; this.Description = rhs.Description; } /// /// id /// public long ID { get; set; } /// /// 客户id /// public long CorpID { get; set; } /// /// 简称 /// public string ShortName { get; set; } /// /// 全称 /// public string FullName { get; set; } /// /// 严重程度 /// public int Severity { get; set; } /// /// 颜色 /// public string Color { get; set; } /// /// 区间值 /// public string RangeValue { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 说明 /// public string Description { get; set; } } }