ReqBase1101.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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.BaseLine.Request
  8. {
  9. class ReqBase1101
  10. {
  11. /// <summary>
  12. /// 就诊凭证类型
  13. /// </summary>
  14. [JsonProperty("mdtrt_cert_type")]
  15. public string MdtrtcertType { get; set; }
  16. /// <summary>
  17. /// 就诊凭证编号
  18. /// </summary>
  19. [JsonProperty("mdtrt_cert_no")]
  20. public string MdtrtcertNo { get; set; }
  21. /// <summary>
  22. /// 卡识别码
  23. /// </summary>
  24. [JsonProperty("card_sn")]
  25. public string CardSN { get; set; }
  26. public string Begntime { get; set; }
  27. /// <summary>
  28. /// 人员证件类型
  29. /// </summary>
  30. [JsonProperty("psn_cert_type")]
  31. public string CertType { get; set; }
  32. /// <summary>
  33. /// 证件号码
  34. /// </summary>
  35. [JsonProperty("certno")]
  36. public string CertNo { get; set; }
  37. [JsonProperty("psn_name")]
  38. public string Name { get; set; }
  39. }
  40. }