67 lines
2.1 KiB
C#
67 lines
2.1 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace HL_FristAidPlatform_Help
|
||
{
|
||
public class CIEVTModel
|
||
{
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
public string GUID { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
|
||
public string Name { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
|
||
public int Age { get; set; }
|
||
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
public int Gender { get; set; }
|
||
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
public DateTime CreationDate { get; set; }
|
||
|
||
/// <summary>
|
||
/// 治疗类型
|
||
/// 类型,多选 01.静脉溶栓 02.血管内介入治疗 03.脑出血
|
||
/// 04.颅内动脉瘤05.CEA/CAS
|
||
/// 存储格式示例:;01;02;03;
|
||
/// </summary>
|
||
public string acZLType { get; set; }
|
||
|
||
/// <summary>
|
||
/// 诊断
|
||
/// </summary>
|
||
public int Diagnosis { get; set; }
|
||
|
||
/// <summary>
|
||
/// 急性脑梗死发病时间 格式:yyyy-MM-dd HH:mm
|
||
/// 当 ACZLType 包含:;01;02;时,填写该字段,急性脑梗死发病时间是 否明确选“未知”时,发病时间不填
|
||
/// </summary>
|
||
public string NGSJZFaBingTime { get; set; }
|
||
|
||
/// <summary>
|
||
/// 急性脑梗死患者到院时间 格式:yyyy-MM-dd HH:mm
|
||
/// 当 ACZLType 包含:;01;02;时,填 写该字段,急性脑梗死是否在院卒 中选“是”时,到院时间=发病时间
|
||
/// </summary>
|
||
public string NGSJZDaoYuanTime { get; set; }
|
||
|
||
/// <summary>
|
||
/// DRT 时间 到院到首次血管再通时间 DRT, 合理取值范围 1≤n≤600, DRT 计算:首次血管再通时间- 到院时间(当在院卒中时,到院 时间=发病时间;当到院时间未 填写时,DRT 记为“不详”;如 果取栓方式选“院内二次发病 取栓”,DRT 计算时到院时间以 院内二次发病时间计算)
|
||
/// </summary>
|
||
public string XGDRT { get; set; }
|
||
}
|
||
}
|