This commit is contained in:
he
2023-03-06 14:36:33 +08:00
parent b4171a6086
commit 4f4a4525b4
3 changed files with 76 additions and 25 deletions
@@ -62,22 +62,22 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// <summary>
/// SOD 百分比 整体访视期间SOD最低点SOD相比增加<20%
/// </summary>
public bool LowPercentLess20 { get; set; }
public bool LowSODPercentLess20 { get; set; }
/// <summary>
/// SOD 百分比 比整体访视期间最低点SOD增加≥20%
/// </summary>
public bool LowPercentBigger20 { get; set; }
public bool LowSODPercentBigger20 { get; set; }
/// <summary>
/// SOD 变化值 比整体访视期间最低点SOD绝对增加值<5 mm
/// </summary>
public bool LowChangeLess5 { get; set; }
public bool LowSODChangeLess5 { get; set; }
/// <summary>
/// 比整体访视期间最低点SOD绝对增加值≥5 mm
/// </summary>
public bool LowChangeBigger5 { get; set; }
public bool LowSODChangeBigger5 { get; set; }
/// <summary>
/// 被评估为NE的单个靶病灶 是否存在状态为不可评估的靶病灶
@@ -109,6 +109,15 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary>
public bool IsAddFive { get; set; }
/// <summary>
/// 靶病灶短径增加值有5mm的Index
/// </summary>
public List<decimal> AddFiveIndexs { get; set; }
/// <summary>
/// 短径有10mm的Index
/// </summary>
public List<decimal> ShortBigger10Indexs { get; set; }
}
/// <summary>