StableVersion4.3/HL_FristAidPlatform_Help/Model/FollowUpSomaticSymptomsMode...

60 lines
1.7 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 FollowUpSomaticSymptomsModel
{
/// <summary>
/// 患者 ID
/// </summary>
public string registerId { get; set; }
/// <summary>
/// 随访的月份
/// 11 月随访 33 月随访 66 月随访 1212 月随访
/// </summary>
public string month { get; set; }
#region 躯体症状与心功能评价
/// <summary>
/// 躯体症状
/// </summary>
public string somaticSymptoms { get; set; }
/// <summary>
/// 躯体症状(胸痛/胸闷)(症 状)
/// 1典型心绞痛症状 2不典型心绞痛症状 3非特异胸痛
/// 《躯体症状》为“胸痛/胸闷”
/// </summary>
public string chestPainSymptom { get; set; }
/// <summary>
/// 躯体症状(内容描述)
/// 《躯体症状》为“胸痛/胸闷”
/// </summary>
public string somaticSymptomsDesc { get; set; }
/// <summary>
/// 心绞痛 CCS 分级(分级)
/// 1I 级 2II 级 3III 级 4IV 级
/// 《心绞痛 CCS 分级》为“是”
/// </summary>
public string anginapectorisGrade { get; set; }
/// <summary>
/// 心脏纽约分级(NYHA)(分级)
/// 1I 级 2II 级 3III 级 4IV 级
/// 《心脏纽约分级(NYHA)》为“是”
/// </summary>
public string nyha { get; set; }
#endregion
}
}