代码修改

IRC_NewDev
he 2023-08-23 14:31:51 +08:00
parent 803f7f43b4
commit 32af01c8f4
1 changed files with 23 additions and 0 deletions

View File

@ -19,6 +19,29 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
}
public class GetPPDInfoOutDto
{
/// <summary>
/// 最低的PPD
/// </summary>
public decimal? NadirPPD { get; set; }
/// <summary>
/// 最低PPD的访视
/// </summary>
public string? LowPPDVisit { get; set; }
/// <summary>
/// 该病灶PPD值最小的访视的长径
/// </summary>
public decimal? LowPPDLDi { get; set; }
/// <summary>
/// 该病灶PPD值最小的访视的短径
/// </summary>
public decimal? LowPPDSDi { get; set; }
}
public class CalculateTaskInDto
{
public Guid VisitTaskId { get; set; }