using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HL_FristAidPlatform_DTO { public class CICapriniDTO { /// /// /// public string GUID { get; set; } /// /// /// public string Name { get; set; } /// /// /// public int Age { get; set; } /// /// /// public int Gender { get; set; } /// /// /// public DateTime CreationDate { get; set; } /// /// 治疗类型 /// 类型,多选 01.静脉溶栓 02.血管内介入治疗 03.脑出血 /// 04.颅内动脉瘤05.CEA/CAS /// 存储格式示例:;01;02;03; /// public string acZLType { get; set; } /// /// 急性脑梗死患者到院时间 格式:yyyy-MM-dd HH:mm /// 当 ACZLType 包含:;01;02;时,填 写该字段,急性脑梗死是否在院卒 中选“是”时,到院时间=发病时间 /// public string NGSJZDaoYuanTime { get; set; } /// /// 本次发病前 mRS评分分数: 整数,合理取值范围 0≤n≤6, /// ACZLType 包含:;01;02;03;04;05; 时,填写该字段 /// public string RYMRS { get; set; } /// /// 评分时间 /// public DateTime ScoreTime { get; set; } /// /// 时差(发病到评分) /// public int Ticks { get; set; } } }