54 lines
1.3 KiB
C#
54 lines
1.3 KiB
C#
namespace HL_FristAidPlatform_Help
|
|
{
|
|
public class DispatchModel
|
|
{
|
|
public string GUID { get; set; }
|
|
public int DeleteFlag { get; set; }
|
|
public string HospitalName { get; set; }
|
|
|
|
public string SchedulingTime { get; set; }
|
|
|
|
public string DispatchNo { get; set; }
|
|
|
|
public string CallAddress { get; set; }
|
|
|
|
public string WaitingAddress { get; set; }
|
|
|
|
public string ContactsPhone { get; set; }
|
|
|
|
public string Contacts { get; set; }
|
|
|
|
public string Pathogeny { get; set; }
|
|
|
|
public int PatientNumber { get; set; }
|
|
|
|
public string AccompanyinPgersonnel { get; set; }
|
|
|
|
public string Note { get; set; }
|
|
|
|
public string VehicleNumber { get; set; }
|
|
|
|
public string ECGNumber { get; set; }
|
|
|
|
public string LabelCard { get; set; }
|
|
|
|
public string DrivingTime { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string Gender { get; set; }
|
|
|
|
public int Age { get; set; }
|
|
|
|
public string ChiefComplaint { get; set; }
|
|
|
|
public string MedicalHistory { get; set; }
|
|
|
|
public string AllergyHistory { get; set; }
|
|
|
|
public string AccidentName { get; set; }
|
|
|
|
public string LeveName { get; set; }
|
|
}
|
|
}
|