using System;
namespace HL_FristAidPlatform_DTO
{
///
/// 保存病历
///
public class SaveMedicalRecordDTO
{
///
///
///
public long CreatorID { get; set; }
///
///
///
public T_Service_FirstAid_PatientInfo FPInfo { get; set; }
///
/// 患者基本信息
///
public T_Service_Patient Patient { get; set; }
///
/// 体格检查
///
public T_Service_FirstAid_HealthCheckup Health { get; set; }
///
/// 专科检查
///
public T_Service_FirstAid_SpecialityCheckUp Speciality { get; set; }
///
/// 辅助检查
///
public T_Service_FirstAid_AssistantExamination AssistantExamination { get; set; }
}
///
/// 患者基本信息
///
public class T_Service_Patient
{
public string GUID { get; set; }
///
/// 真实姓名
///
public string Name { get; set; }
///
/// 性别
///
public int Gender { get; set; }
///
/// 年龄
///
public int Age { get; set; }
///
/// 民族
///
public string Nation { get; set; }
///
/// 移动电话
///
public string MobilePhone { get; set; }
///
/// 证件类型
/// 0:无
/// 1:身份证
/// 2:护照
/// 3:军官证
///
public string Credentials_Type { get; set; }
///
/// 身份证
///
public string IdentityCard { get; set; }
///
/// 联系地址
///
public string Address { get; set; }
///
/// 发病地址
///
public string Attack_Address { get; set; }
///
/// 出生日期
///
public string Birthday { get; set; }
///
/// 职业
///
public string Profession { get; set; }
///
/// 紧急联系人
///
public string EmergencyContact { get; set; }
///
/// 紧急联系电话
///
public string EmergencyContactPhone { get; set; }
public int SystemModuleID { get; set; }
}
///
/// 体格检查
///
public class T_Service_FirstAid_HealthCheckup
{
public string GUID { get; set; }
///
/// 患者GUID
///
public string PatientGUID { get; set; }
///
/// 院前急救处置记录
///
public string DisposalRecord { get; set; }
///
/// 脉搏
///
public string Pulse { get; set; }
///
/// 心率
///
public string HeartRate { get; set; }
///
/// 收缩压
///
public string SystolicPressure { get; set; }
///
/// 舒张压
///
public string DiastolicPressure { get; set; }
///
/// 体温
///
public string Temperature { get; set; }
///
/// 呼吸
///
public string Breathing { get; set; }
///
/// 一般情况
///
public string GeneralQ { get; set; }
///
/// 体位
///
public string Position { get; set; }
///
/// 神志
///
public string Sonscious { get; set; }
///
/// 皮肤:颜色
///
public string SkinColor { get; set; }
///
/// 皮肤:其他
///
public string SkinOther { get; set; }
///
/// 头部:瞳孔左
///
public decimal PupilL { get; set; }
///
/// 头部:瞳孔右
///
public decimal PupilR { get; set; }
///
/// 头部:对光反射(左)
///
public string ReflexL { get; set; }
///
/// 头部:对光反射(右)
///
public string ReflexR { get; set; }
///
/// 头部:其他
///
public string HeadOther { get; set; }
///
/// 颈部:颈抵抗
///
public bool IsNeckRigidity { get; set; }
///
/// 颈部:颈静脉怒张
///
public bool IsJugularFilling { get; set; }
///
/// 颈部:颈动脉搏动
///
public bool IsCarotidPulsation { get; set; }
///
/// 颈部:呼吸停止
///
public bool IsBreathStop { get; set; }
///
/// 肺部:左肺 呼吸音
///
public bool IsBreathSoundsL { get; set; }
///
/// 肺部:左肺 呼吸音值
///
public string BreathSoundsL { get; set; }
///
/// 肺部:左肺 罗湿音
///
public bool IsMoistRalesL { get; set; }
///
/// 肺部:左肺 干罗音
///
public bool IsDryRalesL { get; set; }
///
/// 肺部:右肺 呼吸音
///
public bool IsBreathSoundsR { get; set; }
///
/// 肺部:右肺 呼吸音值
///
public string BreathSoundsR { get; set; }
///
/// 肺部:右肺 罗湿音
///
public bool IsMoistRalesR { get; set; }
///
/// 肺部:右肺 干罗音
///
public bool IsDryRalesR { get; set; }
///
/// 心脏 心律
///
public string Rhythm { get; set; }
///
/// 心脏:心音
///
public string HeartSounds { get; set; }
///
/// 心脏:杂音
///
public bool IsNoise { get; set; }
///
/// 心脏:杂音 部位
///
public string NoisePosition { get; set; }
///
/// 腰部
///
public string Waist { get; set; }
///
/// 腰部:肝脏
///
public string Liver { get; set; }
///
/// 腰部:反跳痛
///
public bool IsBackPain { get; set; }
///
/// 腰部:压痛
///
public bool IsWaistPian { get; set; }
///
/// 腰部:脾脏
///
public string Spleen { get; set; }
///
/// 腰部:肠鸣音
///
public string BowelSound { get; set; }
///
/// 腰部:疼痛部位
///
public string PainOther { get; set; }
///
/// 腰部:其他
///
public string WaistOther { get; set; }
///
/// 脊柱
///
public string Spine { get; set; }
///
/// 四肢:肌力
///
public string MRC { get; set; }
///
/// 四肢:减弱部位:左上
///
public int MRSLT { get; set; }
///
/// 四肢:减弱部位:左下
///
public int MRSLD { get; set; }
///
/// 四肢:减弱部位:右上
///
public string MRSRT { get; set; }
///
/// 四肢:减弱部位:右下
///
public string MRSRD { get; set; }
///
/// 四肢:下肢水肿
///
public bool IsEdema { get; set; }
///
/// 四肢:其他
///
public string MRSOther { get; set; }
///
/// 神经系统:生理反射
///
public string PhysiologicalReflex { get; set; }
///
/// 病理反射:巴宾斯基征
///
public int Babinskisign { get; set; } = -1;
///
/// 神经系统:位置
///
public int NervousPosition { get; set; } = -1;
///
/// 其他
///
public string HealthCheckUpOther { get; set; }
///
/// 是否活动性出血
///
public int ActiveBleed { get; set; } = -1;
///
/// 活动性出血部位
///
public string ActiveBleedSite { get; set; }
///
/// 气道是否畅通
///
public int AirwayOpen { get; set; } = -1;
///
/// 呼吸状况 0正常 1困难 2窒息 3停止
///
public int BreathingState { get; set; } = -1;
///
/// 气道异常原因
///
public string AirwayAbnormal { get; set; }
///
/// 头部是否异常
///
public int HeadAbnormal { get; set; } = -1;
///
/// 头部异常详情
///
public string HeadAbnormalInfo { get; set; }
///
/// 胸部是否异常
///
public int ChestAbnormal { get; set; } = -1;
///
/// 胸部异常详情
///
public string ChestAbnormalInfo { get; set; }
}
///
/// 专科检查
///
public class T_Service_FirstAid_SpecialityCheckUp
{
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; }
}
///
/// 辅助检查
///
public class T_Service_FirstAid_AssistantExamination
{
public string GUID { get; set; }
///
/// 患者GUID
///
public string PatientGUID { get; set; }
///
/// 血糖
///
public decimal GLU { get; set; }
///
/// SPO2
///
public string SPO2 { get; set; }
///
/// 其他
///
public string Other { get; set; }
///
/// 初步诊断
///
public string PrimaryDiagnosis { get; set; }
///
/// 病情
///
public string Illness { get; set; }
///
/// 救治措施
///
public string Measures { get; set; }
///
/// 途中变化
///
public string ChangeOnTheWay { get; set; }
///
/// 急救效果
///
public string FirstAidEffect { get; set; }
///
/// 出诊结果
///
public string VisitResult { get; set; }
///
/// 死亡证明
///
public string DeathCertificate { get; set; }
///
/// 脉搏
///
public string Pulse { get; set; }
///
/// 心率
///
public string HeartRate { get; set; }
///
/// 收缩压
///
public string SystolicPressure { get; set; }
///
/// 舒张压
///
public string DiastolicPressure { get; set; }
///
/// 体温
///
public string Temperature { get; set; }
///
/// 变化SPO2
///
public string CSPO2 { get; set; }
///
/// 变化时间
///
public DateTime? CDatetime { get; set; }
}
///
/// 院前急救患者院前基本信息
///
public class T_Service_FirstAid_PatientInfo
{
///
/// GUID
///
public string GUID { get; set; }
///
/// 患者GUID
///
public string PatientGUID { get; set; }
///
/// 病种GUID
///
public string PathogenyGUID { get; set; }
///
/// 填报人ID
///
public long FilledByID { get; set; }
///
/// 身份类型
///
public string IdentityType { get; set; }
///
/// Killip分级
///
public string Killip { get; set; }
///
/// 标识颜色
///
public string SignArea { get; set; }
///
/// 分诊科室
///
public string TriageDepartment { get; set; }
///
/// 发病时间
///
public DateTime? OnsetTime { get; set; }
///
/// 送往地址
///
public string TransportAddress { get; set; }
///
/// 主诉
///
public string ChiefComplaint { get; set; }
///
/// 病史
///
public string MedicalHistory { get; set; }
///
/// 既往史
///
public string AllergyHistory { get; set; }
///
/// 出警任务GUID
///
public string TaskGUID { get; set; }
///
/// 院前急救处置记录
///
public string DisposalRecord { get; set; }
///
/// 去向 00到院 1 转院 2现场救治 3 拒绝治疗 4拒绝送院 5抢救无效死亡 6 自行离去 7未接到患者
///
public int WhereAbouts { get; set; }
///
/// 是否能够提供病史
///
public int ProvideMedical { get; set; }
///
/// 病史提供人 0 本人 1他人
///
public int Provider { get; set; }
///
/// 用药记录
///
public string MedicationRecord { get; set; }
///
/// 是否有过敏史
///
public int AllergicHistory { get; set; }
///
/// 过敏信息
///
public string AllergicHistoryInfo { get; set; }
///
/// 是否发热
///
public int Fever { get; set; }
///
/// 是否拥有既往病史
///
public int OwnerAllergyHistory { get; set; }
///
/// 是否拥有心脏病史
///
public int HeartDiseaseHistory { get; set; }
///
/// 是否有高血压史
///
public int HypertensionHistory { get; set; }
///
/// 是否有糖尿病史
///
public int DiabetesHistory { get; set; }
}
}