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.

38 lines
923 B

1 year ago
1 year ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Shentun.Peis.PacsBusiness
  5. {
  6. public class GetPatientRegisterPacsCheckInputDto
  7. {
  8. /// <summary>
  9. /// 姓名
  10. /// </summary>
  11. public string PatientName { get; set; }
  12. /// <summary>
  13. /// 条码号
  14. /// </summary>
  15. public string CheckRequestNo { get; set; }
  16. /// <summary>
  17. /// 日期类型 0-检查日期 1-上传日期
  18. /// </summary>
  19. public char DateType { get; set; }
  20. public string StartDate { get; set; }
  21. public string EndDate { get; set; }
  22. /// <summary>
  23. /// 检查类型 0-普通检查 1-检验 2-特检 3-放射
  24. /// </summary>
  25. public char? CheckTypeFlag { get; set; }
  26. public int MaxResultCount { get; set; } = 1000;
  27. public int SkipCount { get; set; } = 0;
  28. }
  29. }