You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
832 B
43 lines
832 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Shentun.Peis.SumSummaryReports
|
|
{
|
|
/// <summary>
|
|
/// 历次综述
|
|
/// </summary>
|
|
public class HistoricalReviewListDto
|
|
{
|
|
/// <summary>
|
|
/// 体检次数
|
|
/// </summary>
|
|
public short MedicalTimes { get; set; }
|
|
|
|
/// <summary>
|
|
/// 总检医生
|
|
/// </summary>
|
|
public string SummaryDoctor { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 总检日期
|
|
/// </summary>
|
|
public string SummaryDate { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 总检小结
|
|
/// </summary>
|
|
public string SumSummarys { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 总检建议
|
|
/// </summary>
|
|
public string SumSuggestions { get; set; }
|
|
}
|
|
|
|
|
|
|
|
}
|