12345678910111213141516171819202122232425262728293031323334 |
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PTMedicalInsurance.Entity
- {
- class HisPatientInfo:PatientInfo
- {
- [JsonProperty("patName")]
- public new string Name { set; get; }
- [JsonProperty("patBirthdate")]
- public new string Birthday { set; get; }
- [JsonProperty("patSex")]
- public new string Gender { set; get; }
- [JsonProperty("Age")]
- public new string Age { set; get; }
- [JsonProperty("naty")]
- public new string Nationality { set; get; }
- [JsonProperty("credNo")]
- new public string IDNo { set; get; }
- [JsonProperty("credCode")]
- new public string IDType { set; get; }
- }
- }
|