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.

32 lines
777 B

1 year ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Shentun.Peis.DiagnosisFunctions
  5. {
  6. public class GetCriticalResultDto
  7. {
  8. public Guid RegisterCheckId { get; set; }
  9. public char? IsCritical { get; set; }
  10. public char? IsFollowUp { get; set; }
  11. public string CriticalRangeValue { get; set; }
  12. public List<GetItemCriticalResultDto> ItemDetails { get; set; } = new List<GetItemCriticalResultDto>();
  13. }
  14. public class GetItemCriticalResultDto
  15. {
  16. public Guid RegisterCheckId { get; set; }
  17. public Guid ItemId { get; set; }
  18. public char? IsCritical { get; set; }
  19. public char? IsFollowUp { get; set; }
  20. public string CriticalRangeValue { get; set; }
  21. }
  22. }