2024-12-25 17:24:22 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace 心电图绘制
|
|
|
|
|
{
|
|
|
|
|
internal class PatientInfo
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
public string examid { get; set; }
|
|
|
|
|
public string name { get; set; }
|
|
|
|
|
public string gender { get; set; }
|
2024-12-27 17:21:36 +08:00
|
|
|
|
public string age { get; set; }
|
2024-12-25 17:24:22 +08:00
|
|
|
|
public string ward { get; set; }
|
|
|
|
|
public string regid { get; set; }
|
2024-12-27 17:21:36 +08:00
|
|
|
|
public string hr { get; set; }
|
2024-12-25 17:24:22 +08:00
|
|
|
|
public double pr { get; set; }
|
|
|
|
|
public string qrs { get; set; }
|
|
|
|
|
public string qtqtc { get; set; } // QT/QTC 被转换为 qtqt
|
|
|
|
|
public string rv5sv1 { get; set; }
|
|
|
|
|
public string rv5sv1plus { get; set; } // RV5+SV1 被转换为 rv5sv1plus
|
|
|
|
|
public string pt { get; set; }
|
|
|
|
|
public string diagnosishint { get; set; }
|
|
|
|
|
public string department { get; set; }
|
|
|
|
|
public string image { get; set; }
|
|
|
|
|
|
|
|
|
|
public string doctorDiagTime { get; set; }
|
|
|
|
|
|
|
|
|
|
public string diagContent { get; set; }
|
|
|
|
|
|
|
|
|
|
public string DepartName { get; set; }
|
|
|
|
|
|
|
|
|
|
public string doctorName { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 类型 1是返回base64 2是在指定路径保存pdf
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int type { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public string filepath { get; set; }
|
|
|
|
|
|
|
|
|
|
public string orgname { get; set; }
|
|
|
|
|
|
2024-12-27 09:55:59 +08:00
|
|
|
|
public string ptimelimit { get; set; }
|
|
|
|
|
|
2024-12-25 17:24:22 +08:00
|
|
|
|
}
|
|
|
|
|
}
|