85 lines
2.3 KiB
C#
85 lines
2.3 KiB
C#
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:颅内动脉瘤手术数据直报表;3:CEACAS数据直报表;4:静脉溶栓血管内介入治疗数据直报表;9:卒中联盟数据报表
|
||
/// </summary>
|
||
public int ReportType { get; set; }
|
||
|
||
/// <summary>
|
||
/// 删除标记0未删除1已删除
|
||
/// </summary>
|
||
public int DeleteFlag { get; set; }
|
||
}
|
||
}
|
||
|