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.

28 lines
982 B

1 year ago
2 years ago
1 year ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Shentun.Peis.PlugIns.Extensions.ImportPacsResults.Hzcy
  7. {
  8. public class ImportPacsResultInterfaceInput
  9. {
  10. public string tjNum { get; set; }
  11. public string checkupItemId { get; set; }
  12. public string organizeCode { get; set; }
  13. public string examTypeCode { get; set; }
  14. public string idCard { get; set; }
  15. public string patientType { get; set; }
  16. public string patientId { get; set; }
  17. public string requestId { get; set; }
  18. public string clinicId { get; set; }
  19. public string hospizationId { get; set; }
  20. public string visitId { get; set; }
  21. public long? examRequestId { get; set; }
  22. public string beginTime { get; set; }
  23. public string endTime { get; set; }
  24. public int pageNo { get; set; }
  25. public int pageSize { get; set; }
  26. }
  27. }