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
32 lines
777 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Shentun.Peis.DiagnosisFunctions
|
|
{
|
|
public class GetCriticalResultDto
|
|
{
|
|
public Guid RegisterCheckId { get; set; }
|
|
|
|
public char? IsCritical { get; set; }
|
|
|
|
public char? IsFollowUp { get; set; }
|
|
|
|
public string CriticalRangeValue { get; set; }
|
|
|
|
public List<GetItemCriticalResultDto> ItemDetails { get; set; } = new List<GetItemCriticalResultDto>();
|
|
}
|
|
|
|
public class GetItemCriticalResultDto
|
|
{
|
|
public Guid RegisterCheckId { get; set; }
|
|
|
|
public Guid ItemId { get; set; }
|
|
|
|
public char? IsCritical { get; set; }
|
|
|
|
public char? IsFollowUp { get; set; }
|
|
|
|
public string CriticalRangeValue { get; set; }
|
|
}
|
|
}
|