StableVersion4.3/HL_FristAidPlatform_Help/Model/ChestPainUnitModel.cs

102 lines
2.4 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_Help
{
/// <summary>
/// 胸痛单元患者列表实体类
/// </summary>
public class ChestPainUnitModel
{
public string GUID { get; set; }
/// <summary>
/// 姓名
/// </summary>
public string Name { get; set; }
/// <summary>
/// 性别
/// </summary>
public int Gender { get; set; }
/// <summary>
/// 年龄
/// </summary>
public int Age { get; set; }
/// <summary>
/// 首次医疗接触时间
/// </summary>
public string First_MC_Time { get; set; }
/// <summary>
/// 发病时间
/// </summary>
public string Attack_Time { get; set; }
/// <summary>
///
/// </summary>
public string Is_Null_Attack_Detail_Time { get; set; }
/// <summary>
/// 诊断
/// </summary>
public string CP_Diagnosis_Code { get; set; }
/// <summary>
/// 急救状态
/// 0:急救中
/// 1:住院中
/// 2:已转归
/// </summary>
public int EmergencyState { get; set; }
/// <summary>
/// 填报状态
/// 1:填报中
/// 2:填报完成
/// 3:待审核
/// 4:审核通过
/// 5:质疑
/// 6:待归档
/// 7:归档成功
/// Add By LYM 2019-11-12
/// </summary>
public int Status { get; set; }
/// <summary>
/// 建档时间
/// </summary>
public DateTime? RegisterTime { get; set; }
/// <summary>
/// 来院方式代码 0:未选参考字典表T_Base_HospitalMode
/// </summary>
public string CW_Coming_Way_Code { get; set; }
public int TotalCount { get; set; }
/// <summary>
/// 是否绿道患者
/// </summary>
public string IsGreenWay { get; set; }
/// <summary>
/// 建档时间 (创建时间)
/// </summary>
public DateTime? CreationDate { get; set; }
/// <summary>
/// 是否上转患者
/// 下级转上 1
/// 上级转下 2
/// </summary>
public string IsForward { get; set; }
}
}