using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PTMedicalInsurance.Entity.BaseLine.Request { class ReqBase1101 { /// /// 就诊凭证类型 /// [JsonProperty("mdtrt_cert_type")] public string MdtrtcertType { get; set; } /// /// 就诊凭证编号 /// [JsonProperty("mdtrt_cert_no")] public string MdtrtcertNo { get; set; } /// /// 卡识别码 /// [JsonProperty("card_sn")] public string CardSN { get; set; } public string Begntime { get; set; } /// /// 人员证件类型 /// [JsonProperty("psn_cert_type")] public string CertType { get; set; } /// /// 证件号码 /// [JsonProperty("certno")] public string CertNo { get; set; } [JsonProperty("psn_name")] public string Name { get; set; } } }