using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_DTO
{
public class TCDDTO
{
///
///
///
public string PatientGUID { get; set; }
///
/// 是否行TCD检查
///
public string IsTCD { get; set; }
///
/// 检查时间 精确到年月日
///
public string InspectionTime { get; set; }
///
/// 检查人
///
public string InspectionUser { get; set; }
///
/// 检查机构名称
///
public string InspectionInstitutionName { get; set; }
///
/// 超声所见
///
public string UltrasoundFindings { get; set; }
///
/// 超声提醒
///
public string UltrasoundReminder { get; set; }
///
/// 当前筛查人
///
public string ScreenName { get; set; }
}
}