using System;
using System.Collections.Generic;
using System.Text;
namespace Shentun.Peis.SumSummaryReports
{
///
/// 历次综述
///
public class HistoricalReviewListDto
{
///
/// 体检次数
///
public short MedicalTimes { get; set; }
///
/// 总检医生
///
public string SummaryDoctor { get; set; }
///
/// 总检日期
///
public string SummaryDate { get; set; }
///
/// 总检小结
///
public string SumSummarys { get; set; }
///
/// 总检建议
///
public string SumSuggestions { get; set; }
}
}