ECGPrint/1200Gxml心电图绘制/服务/PatientInfo.cs

50 lines
1.4 KiB
C#

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; }
public string age { get; set; }
public string ward { get; set; }
public string regid { get; set; }
public string hr { get; set; }
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; }
public string ptimelimit { get; set; }
}
}