namespace HL_FristAidPlatform_DTO
{
public class SpecialityCheckUpDTO
{
///
/// 患者GUID
///
public string PatientGUID { get; set; }
///
/// 专科检查
///
public SpecialityCheckUp SpecialityCheckUp { get; set; }
}
public class SpecialityCheckUp
{
///
/// GUID
///
public string GUID { get; set; }
///
/// 患者GUID
///
public string PatientGUID { get; set; }
///
/// 颅脑 外伤类型
///
public int BrainType { get; set; }
///
/// 颅脑 伤情
///
public string BranInjury { get; set; }
///
/// 颌面 外伤类型
///
public int MaxillofacialType { get; set; }
///
/// 颌面 伤情
///
public string MaxillofacialInjury { get; set; }
///
/// 胸 外伤类型
///
public int ChestType { get; set; }
///
/// 胸 伤情
///
public string ChestInjury { get; set; }
///
/// 腹 外伤类型
///
public int AbdomenType { get; set; }
///
/// 腹 伤情
///
public string AbdomenInjury { get; set; }
///
/// 背部 外伤类型
///
public int BackType { get; set; }
///
/// 背部 伤情
///
public string BackInjury { get; set; }
///
/// 脊柱 外伤类型
///
public int SpineType { get; set; }
///
/// 脊柱 伤情
///
public string SpineInjury { get; set; }
///
/// 四肢 外伤类型
///
public int limbType { get; set; }
///
/// 四肢 伤情
///
public string limbInjury { get; set; }
}
}