From 32af01c8f4fa5e07f28f01023a4de5e42035f7b1 Mon Sep 17 00:00:00 2001
From: he <10978375@qq.com>
Date: Wed, 23 Aug 2023 14:31:51 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BB=A3=E7=A0=81=E4=BF=AE=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../Reading/Dto/ReadingCalculateViewModel.cs | 23 +++++++++++++++++++
1 file changed, 23 insertions(+)
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; }