namespace Yw.Application { /// /// /// public class HealthResultStdDto { /// /// /// public HealthResultStdDto() { } /// /// /// public HealthResultStdDto(Model.HealthResult rhs) { this.ID = rhs.ID; this.ShortName = rhs.ShortName; this.FullName = rhs.FullName; this.Severity = rhs.Severity; this.Color = rhs.Color; this.MinValue = rhs.MinValue; this.MinType = rhs.MinType; this.MaxValue = rhs.MaxValue; this.MaxType = rhs.MaxType; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } /// /// id /// public long ID { get; set; } /// /// 简称 /// public string ShortName { get; set; } /// /// 全称 /// public string FullName { get; set; } /// /// 严重程度(值越大、越严重) /// public int Severity { get; set; } /// /// 颜色 (#000000) /// public string Color { get; set; } /// /// 下限 /// public int MinValue { get; set; } /// /// 下限类型(大于或大于等于) /// public Model.eCompareType MinType { get; set; } /// /// 上限 /// public int MaxValue { get; set; } /// /// 上限类型 (小于或小于等于) /// public Model.eCompareType MaxType { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 说明 /// public string Description { get; set; } } }