|
@@ -0,0 +1,51 @@
|
|
|
+using Newtonsoft.Json;
|
|
|
+using System;
|
|
|
+using System.Collections.Generic;
|
|
|
+using System.Linq;
|
|
|
+using System.Text;
|
|
|
+using System.Threading.Tasks;
|
|
|
+
|
|
|
+namespace AnHuiMI.Entity.Mobile
|
|
|
+{
|
|
|
+ class NewPatientInfo : PatientInfo
|
|
|
+ {
|
|
|
+ [JsonProperty("patientName")]
|
|
|
+ public new string name { get; set; }
|
|
|
+ }
|
|
|
+
|
|
|
+ class PatientInfo
|
|
|
+ {
|
|
|
+ public int adm_Dr { get; set; }
|
|
|
+ public string mdtrtID { get; set; }
|
|
|
+
|
|
|
+ [JsonProperty("patName")]
|
|
|
+ public string name { get; set; }
|
|
|
+
|
|
|
+ [JsonProperty("patSex")]
|
|
|
+ public string gend { get; set; }
|
|
|
+
|
|
|
+ [JsonProperty("naty")]
|
|
|
+ public string naty { get; set; }
|
|
|
+
|
|
|
+ [JsonProperty("Age")]
|
|
|
+ public string age { get; set; }
|
|
|
+
|
|
|
+ [JsonProperty("patBirthdate")]
|
|
|
+ public string brdy { get; set; }
|
|
|
+ public string psn_no { get; set; }
|
|
|
+ public string insuType { get; set; }
|
|
|
+ public string medType { get; set; }
|
|
|
+
|
|
|
+ public string IDNO { get; set; }
|
|
|
+ public string IDType { get; set; }
|
|
|
+
|
|
|
+ [JsonProperty("credNo")]
|
|
|
+ public string certNO { get; set; }
|
|
|
+
|
|
|
+ [JsonProperty("credCode")]
|
|
|
+ public string certType { get; set; }
|
|
|
+
|
|
|
+ public string mdtrtcertNO { get; set; }
|
|
|
+ public string mdtrtcertType { get; set; }
|
|
|
+ }
|
|
|
+}
|