35 lines
1.2 KiB
C#
35 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace _1200gFtp
|
|
{
|
|
public class patientInfoFLY
|
|
{
|
|
public string patientName { get; set; }
|
|
public string idCard { get; set; }
|
|
public string sex { get; set; }
|
|
public string birthday { get; set; }
|
|
public string yearold { get; set; }
|
|
public string area { get; set; }
|
|
public string Items { get; set; }
|
|
public string appointmentTimes { get; set; }
|
|
public string symptom { get; set; }
|
|
public string hospitalCode { get; set; }
|
|
public string hospitalName { get; set; }
|
|
public string departmentCode { get; set; }
|
|
public string departmentName { get; set; }
|
|
public string resDoctorName { get; set; }
|
|
public string resDoctorCode { get; set; }
|
|
public string patientType { get; set; }
|
|
public int patientTypeCode { get; set; }
|
|
public string nation { get; set; }
|
|
public string appointmentId { get; set; }
|
|
public string wearTime { get; set; }
|
|
public int status { get; set; }
|
|
public string patientCode { get; set; }
|
|
}
|
|
}
|