HisPatientInfo.cs 803 B

12345678910111213141516171819202122232425262728293031323334
  1. using Newtonsoft.Json;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace PTMedicalInsurance.Entity
  8. {
  9. class HisPatientInfo:PatientInfo
  10. {
  11. [JsonProperty("patName")]
  12. public new string Name { set; get; }
  13. [JsonProperty("patBirthdate")]
  14. public new string Birthday { set; get; }
  15. [JsonProperty("patSex")]
  16. public new string Gender { set; get; }
  17. [JsonProperty("Age")]
  18. public new string Age { set; get; }
  19. [JsonProperty("naty")]
  20. public new string Nationality { set; get; }
  21. [JsonProperty("credNo")]
  22. new public string IDNo { set; get; }
  23. [JsonProperty("credCode")]
  24. new public string IDType { set; get; }
  25. }
  26. }