StableVersion4.3/HL_FristAidPlatform_Help/Model/ChestPainMianModel.cs

88 lines
2.1 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
{
public class ChestPainMianModel
{
/// <summary>
/// ID
/// </summary>
public long ID { get; set; }
/// <summary>
/// GUID
/// </summary>
public string GUID { get; set; }
/// <summary>
/// 真实姓名
/// 对应卒中接口文档人口学信息表Archives aName
/// </summary>
public string Name { get; set; }
/// <summary>
/// 性别
/// 对应卒中接口文档人口学信息表ArchivesaSex
/// </summary>
public int Gender { get; set; }
/// <summary>
/// 年龄
/// </summary>
public int Age { get; set; }
/// <summary>
/// 年龄单位
/// </summary>
public string Age_Unit { get; set; }
/// <summary>
/// 标签卡编号
/// </summary>
public long WristStrapID { get; set; }
/// <summary>
/// 标签卡别名
/// </summary>
public string Alias { get; set; }
/// <summary>
/// 标签卡编号
/// </summary>
public string Code { get; set; }
/// <summary>
/// 患者自愿放弃后续治疗 LYM 2020-03-31
/// 0:否
/// 1:是
/// </summary>
public string Give_UP_Treatment { get; set; }
/// <summary>
/// 直接转送上级医院
/// 0
/// 1
/// </summary>
public string CW_ZY_IS_TRANS_HOSPITAL { get; set; }
/// <summary>
/// 直接转送上级医院
/// 0
/// 1
/// </summary>
public string CW_120_Is_Trans_Hospital { get; set; }
/// <summary>
/// 患者转归
/// 1: 出院
/// 2转送其它医院
/// 3转送其它科室
/// 4死亡
/// </summary>
public string OutCome_Code { get; set; }
}
}