diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingCalculateViewModel.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingCalculateViewModel.cs index 1cf028180..59d8244ce 100644 --- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingCalculateViewModel.cs +++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingCalculateViewModel.cs @@ -19,6 +19,29 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto } + public class GetPPDInfoOutDto + { + /// + /// 最低的PPD + /// + public decimal? NadirPPD { get; set; } + + /// + /// 最低PPD的访视 + /// + public string? LowPPDVisit { get; set; } + + /// + /// 该病灶PPD值最小的访视的长径 + /// + public decimal? LowPPDLDi { get; set; } + + /// + /// 该病灶PPD值最小的访视的短径 + /// + public decimal? LowPPDSDi { get; set; } + } + public class CalculateTaskInDto { public Guid VisitTaskId { get; set; }