StableVersion4.3/HL_FristAidPlatform_Help/Model/CIHospitalizationDeathModel.cs

67 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 CIHospitalizationDeathModel
{
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; }
/// <summary>
/// 诊断
/// </summary>
public int Diagnose { get; set; }
/// <summary>
/// 离院方式 必填单选
/// 1.医嘱离院
/// 2.医嘱转院
/// 3.医嘱转社区卫生服务机构/乡镇卫 生院
/// 4.非医嘱离院
/// 5.死亡
/// 9.其他
/// 当 ACZLType 包含:;01;02;03;04;05; 时,填写该字段
/// </summary>
public string CYLyFs { get; set; }
/// <summary>
/// 死亡时间
/// </summary>
public string CYSwSj { get; set; }
/// <summary>
/// 死亡原因 多选
/// 01.呼吸循环衰竭
/// 02.脑血管病
/// 03.肺部感染
/// 04.上消化道出血
/// 05.急性肾功能衰竭
/// 06.损伤和中毒
/// 98.不详
/// 99.其他
/// 存储格式示例:;01;02;03;
/// </summary>
public string CYSwYy { get; set; }
/// <summary>
/// 治疗类型
/// 类型,多选 01.静脉溶栓 02.血管内介入治疗 03.脑出血
/// 04.颅内动脉瘤05.CEA/CAS
/// 存储格式示例:;01;02;03;
/// </summary>
public string acZLType { get; set; }
}
}