StableVersion4.3/HL_FristAidPlatform_DTO/Service/MedicalStaffWorkloadDTO.cs

71 lines
1.8 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_DTO
{
public class MedicalStaffWorkloadDTO
{
/// <summary>
/// 患者GUID
/// </summary>
public string GUID { get; set; }
/// <summary>
/// 建档时间
/// </summary>
public string RegisterTime { get; set; } = "";
/// <summary>
/// 患者姓名
/// </summary>
public string Name { get; set; } = "";
/// <summary>
/// 患者性别
/// </summary>
public string Gender { get; set; } = "";
/// <summary>
/// 患者年龄
/// </summary>
public int Age { get; set; }
/// <summary>
/// 来院方式
/// 1呼叫120或其他出车 2转院包含任何机构 3自行来院 4院内发病
/// </summary>
public string CW_Coming_Way { get; set; } = "";
/// <summary>
/// 来院接诊的医护人员名称
/// </summary>
public string MedicalStaff { get; set; } = "";
/// <summary>
/// 初步诊断
/// 1:STEMI 2:NSTEMI 3:UA 4:主动脉夹层 5:肺动脉栓塞 6:非ACS心源性胸痛 7:其它非心源性胸痛 8:待查
/// </summary>
public string CP_Diagnosis { get; set; } = "";
/// <summary>
/// 诊断医生
/// </summary>
public string DiagnosticDoctor { get; set; } = "";
/// <summary>
/// 心内科会诊医生
/// </summary>
public string CardiologyConsultantDoctor { get; set; } = "";
/// <summary>
/// 介入医生
/// </summary>
public string InterventionalDoctor { get; set; } = "";
}
}