StableVersion4.3/HL_FristAidPlatform_Help/Model/PatientLogModel.cs

77 lines
1.7 KiB
C#

using System;
using System.Collections.Generic;
using System.Reflection;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.ComponentModel;
namespace HL_FristAidPlatform_Help
{
/// <summary>
/// 患者日志信息
/// </summary>
public class PatientLogModel
{
/// <summary>
///
/// </summary>
public List<string> Title { get; set; }
/// <summary>
///
/// </summary>
public List<List<string>> DateList { get; set; }
/// <summary>
///
/// </summary>
public List<PatientLogInfo> PatientLogList { get; set; }
}
/// <summary>
///
/// </summary>
public class PatientLogInfo : Attribute
{
[Description("姓名")]
public string Name { get; set; }
[Description("性别")]
/// <summary>
/// 性别
/// </summary>
public string Gender { get; set; }
[Description("年龄")]
/// <summary>
/// 年龄
/// </summary>
public string Age { get; set; }
[Description("首次医疗接触")]
/// <summary>
/// 首次医疗接触
/// </summary>
public string First_MC_Time { get; set; }
[Description("诊断")]
/// <summary>
/// 诊断
/// </summary>
public string CP_Diagnosis_Code { get; set; }
[Description("接诊医生")]
/// <summary>
/// 接诊医生
/// </summary>
public string First_Doctor_Name { get; set; }
[Description("病人去向")]
/// <summary>
/// 病人去向
/// </summary>
public string OutCome_Code { get; set; }
}
}