70 lines
1.5 KiB
C#
70 lines
1.5 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace HL_FristAidPlatform_DTO
|
|||
|
{
|
|||
|
public class PatientABCD2DTO
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 患者编号(GUID)
|
|||
|
/// </summary>
|
|||
|
public string PatientGuid { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 年龄≥60 1分
|
|||
|
/// 年龄≤60 0分
|
|||
|
/// </summary>
|
|||
|
public string Age { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 血压≥140/90mmHg 1分
|
|||
|
/// 血压≤140/90mmHg 0分
|
|||
|
/// </summary>
|
|||
|
|
|||
|
public string BloodPressure { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 临床表现
|
|||
|
/// 单侧肢体无力 2分
|
|||
|
/// 有语言障碍而肢体无力 1分
|
|||
|
/// 其他症状 0分
|
|||
|
/// </summary>
|
|||
|
|
|||
|
public string linicalFeature { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 症状持续时间
|
|||
|
/// ≥60 2分
|
|||
|
/// 10-59 1分
|
|||
|
/// 0<10 0分
|
|||
|
/// </summary>
|
|||
|
|
|||
|
public string Duration { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 有糖尿史
|
|||
|
/// 是 1分
|
|||
|
/// 否 0分
|
|||
|
/// </summary>
|
|||
|
|
|||
|
public string Diabetes { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 总分
|
|||
|
/// </summary>
|
|||
|
public string TotalScore { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
///
|
|||
|
/// </summary>
|
|||
|
public long CreatorID { get; set; }
|
|||
|
/// <summary>
|
|||
|
///
|
|||
|
/// </summary>
|
|||
|
public DateTime CreationDate { get; set; }
|
|||
|
}
|
|||
|
}
|