61 lines
1.7 KiB
C#
61 lines
1.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HL_FristAidPlatform_Help
|
|
{
|
|
/// <summary>
|
|
/// 缺血性脑血管出院时抗血小板药物治疗列表
|
|
/// </summary>
|
|
public class TIACVDDAPTPatientModel
|
|
{
|
|
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; }
|
|
public int Diagnosis { get; set; }
|
|
// public string CYDY { get; set; }
|
|
public string CYTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 离院方式 必填单选
|
|
/// 1.医嘱离院
|
|
/// 2.医嘱转院
|
|
/// 3.医嘱转社区卫生服务机构/乡镇卫 生院
|
|
/// 4.非医嘱离院
|
|
/// 5.死亡
|
|
/// 9.其他
|
|
/// 当 ACZLType 包含:;01;02;03;04;05; 时,填写该字段
|
|
/// </summary>
|
|
public string CYLyFs { get; set; }
|
|
|
|
/// <summary>
|
|
/// 治疗类型
|
|
/// 类型,多选 01.静脉溶栓 02.血管内介入治疗 03.脑出血
|
|
/// 04.颅内动脉瘤05.CEA/CAS
|
|
/// 存储格式示例:;01;02;03;
|
|
/// </summary>
|
|
public string acZLType { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 出院带药 多选
|
|
/// 01.降压药
|
|
/// 02.降糖药
|
|
/// 03.调脂药
|
|
/// 04.抗凝药
|
|
/// 05.抗血小板药
|
|
/// 06.中药治疗
|
|
/// 98.无
|
|
/// 99.其他
|
|
/// 存储格式示例:;01;02;03; 当 ACZLType 包含:;03;04;05;时, 填写该字段
|
|
/// </summary>
|
|
public string CYDY { get; set; }
|
|
|
|
}
|
|
|
|
}
|