ECGGather/1200gFtp/patientInfoModel.cs
2024-12-25 17:21:40 +08:00

26 lines
709 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace _1200gFtp
{
public class patientInfoModel
{
public string ftpPath { get; set; }
public string patientName { get; set; }
public string patientSex { get; set; }
public int patientAge { get; set; }
public string startTime { get; set; }
public string endTime { get; set; }
public string dicomUrl { get; set; }
public bool isPanDu { get; set; }
public string pdfUrl { get; set; }
public string testDate { get; set; }
public string evidence { get; set; }
public string conclusion { get; set; }
}
}