81 lines
2.0 KiB
C#
81 lines
2.0 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 ChestPain_FollowUpModel
|
|
{
|
|
/// <summary>
|
|
/// 患者Guid
|
|
/// </summary>
|
|
public string registerId { 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 CP_Diagnosis_Code { get; set; }
|
|
|
|
/// <summary>
|
|
/// 出院时间
|
|
/// </summary>
|
|
public DateTime? Leave_Time { get; set; }
|
|
|
|
/// <summary>
|
|
/// 未随访的月份:逗号拼接
|
|
/// </summary>
|
|
public string Month { get; set; }
|
|
|
|
/// <summary>
|
|
/// 部位1:右冠近段
|
|
/// 2:右冠中段
|
|
/// 3:右冠远段
|
|
/// 4:后降支(右优势型)
|
|
/// 5:左主干
|
|
/// 6:前降支近段
|
|
/// 7:前降支中段
|
|
/// 8:前降支远段
|
|
/// 9:第一对角支
|
|
/// 10:第二对角支
|
|
/// 11:旋支近段
|
|
/// 12:第一钝缘支
|
|
/// 13:旋支远段
|
|
/// 14:左室后支
|
|
/// 15:后降支(左优势型或均衡型)
|
|
/// 16:中间支
|
|
/// 17:第三对角支
|
|
/// 18:第二钝缘支
|
|
/// 19:第三钝缘支
|
|
/// 20:锐缘支
|
|
/// 21:左圆椎支
|
|
/// 22:右圆椎支
|
|
/// 23:室间隔支
|
|
/// 24:左后外侧支
|
|
/// 25:右后外侧支
|
|
/// 26:房室沟动脉
|
|
/// 27:后降支室间支
|
|
/// </summary>
|
|
// public string Position { get; set; }
|
|
}
|
|
}
|