StableVersion4.3/HL_FristAidPlatform_DTO/Service/T_Service_EMR_CTDTO.cs

85 lines
2.3 KiB
C#
Raw 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.

namespace HL_FristAidPlatform_DTO
{
/// <summary>
/// CT室信息表
/// </summary>
public class T_Service_EMR_CTDTO
{
/// <summary>
/// ID
/// </summary>
public long ID { get; set; }
/// <summary>
/// GUID
/// </summary>
public string GUID { get; set; }
/// <summary>
/// 患者编号(GUID)
/// </summary>
public string PatientGuid { get; set; }
/// <summary>
/// CT
/// </summary>
public string CT { get; set; }
/// <summary>
/// 出血部位左侧选项值#分割
/// </summary>
public string BleedingPartLeft { get; set; }
/// <summary>
/// 出血部位左侧选项值文字#分割
/// </summary>
public string BleedingPartLeftText { get; set; }
/// <summary>
/// 出血部位右侧选项值#分割
/// </summary>
public string BleedingPartRight { get; set; }
/// <summary>
/// 出血部位右侧选项值文字#分割
/// </summary>
public string BleedingPartRightText { get; set; }
/// <summary>
/// 出血大小
/// </summary>
public string BleedingSize { get; set; }
/// <summary>
/// 颅内血管检查选项值#分割
/// </summary>
public string IntracranialVessels { get; set; }
/// <summary>
/// 颅内血管检查选项值文字#分割
/// </summary>
public string IntracranialVesselsText { get; set; }
/// <summary>
/// 病因诊断选项值#分割
/// </summary>
public string EtiologicalDiagnosis { get; set; }
/// <summary>
/// 病因诊断选项值文字#分割
/// </summary>
public string EtiologicalDiagnosisText { get; set; }
/// <summary>
/// 所属报表类型0公用1脑出血手术数据直报表2颅内动脉瘤手术数据直报表3CEACAS数据直报表4静脉溶栓血管内介入治疗数据直报表9卒中联盟数据报表
/// </summary>
public int ReportType { get; set; }
/// <summary>
/// 删除标记0未删除1已删除
/// </summary>
public int DeleteFlag { get; set; }
}
}