using System; using System.Collections.Generic; using System.Text; namespace Shentun.Peis.SumSummaryReports { public class SumSummaryReportDetailResultDto { public int ItemTypeDisplayOrder { get; set; } /// /// 项目类别名称 /// public string ItemTypeName { get; set; } /// /// 项目类别下的组合项目列表 /// public List Asbitems { get; set; } } /// /// 项目类别下的组合项目 /// public class SumSummaryReportDetailResultWithAsbitem { /// /// 项目类别名称 /// public string ItemTypeName { get; set; } /// /// 组合项目名称 /// public string AsbitemName { get; set; } /// /// 检查医生 /// public string CheckDoctorName { get; set; } /// /// 检查日期 /// public DateTime CheckDate { get; set; } /// /// 检查项目列表 /// public List Items { get; set; } /// /// 检查小结列表 /// public List Summarys { get; set; } public int ItemTypeDisplayOrder { get; set; } public int AsbitemDisplayOrder { get; set; } } /// /// 检查项目 /// public class SumSummaryReportDetailResultWithItem { /// /// 项目ID /// public Guid ItemId { get; set; } /// /// 项目名称 /// public string ItemName { get; set; } /// /// 项目结果 /// public string ItemResult { get; set; } /// /// 上一次结果 /// public string PreviousItemResult { get; set; } /// /// 上上次结果 /// public string PreviousTwoItemResult { get; set; } /// /// 参考范围 /// public string ReferenceRangeValue { get; set; } /// /// 危警值范围 /// public string CriticalRangeValue { get; set; } /// /// 单位 /// public string Unit { get; set; } /// /// 提示 /// public string ResultStatusName { get; set; } //状态ID public string ResultStatusId { get; set; } /// /// 上一次数据字体颜色 /// public int PreviousReportFontColor { get; set; } /// /// 上一次数据背景颜色 /// public int PreviousReportBackgroundColor { get; set; } /// /// 上两次数据字体颜色 /// public int PreviousTwoReportFontColor { get; set; } /// /// 上两次数据背景颜色 /// public int PreviousTwoReportBackgroundColor { get; set; } /// /// 数据字体颜色 /// public int ReportFontColor { get; set; } /// /// 数据背景颜色 /// public int ReportBackgroundColor { get; set; } } /// /// 检查小结 /// public class SumSummaryReportDetailResultWithSummary { /// /// 小结内容 /// public string Summary { get; set; } } }