You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.0 KiB

5 months ago
  1. namespace Shentun.PeisReport.Api.Dto.ReportBusiness
  2. {
  3. public class GetLisReportByIdNoDto : PublicResultDto
  4. {
  5. public List<GetLisReportByIdNoResultDataDto> Data { get; set; } = new List<GetLisReportByIdNoResultDataDto>();
  6. }
  7. public class GetLisReportByIdNoResultDataDto
  8. {
  9. /// <summary>
  10. /// 检验目的
  11. /// </summary>
  12. public string InspectionPurpose { get; set; }
  13. /// <summary>
  14. /// 姓名
  15. /// </summary>
  16. public string PatientName { get; set; }
  17. /// <summary>
  18. /// 身份证号码
  19. /// </summary>
  20. public string IdNo { get; set; }
  21. /// <summary>
  22. /// 手机号
  23. /// </summary>
  24. public string MobileTelephone { get; set; }
  25. /// <summary>
  26. /// 报告发布时间
  27. /// </summary>
  28. public string SendDateTime { get; set; }
  29. /// <summary>
  30. /// 报告地址
  31. /// </summary>
  32. public string ReportUrl { get; set; }
  33. }
  34. }