From 064abbf8dd45e817b8761d8bdf23ded9bf845cc7 Mon Sep 17 00:00:00 2001
From: he <10978375@qq.com>
Date: Wed, 18 Oct 2023 10:17:32 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../ReadingCalculate/LuganoCalculateService.cs | 2 +-
IRaCIS.Core.Domain.Share/Reading/ReadEnum.cs | 18 ++++++++++++++----
2 files changed, 15 insertions(+), 5 deletions(-)
diff --git a/IRaCIS.Core.Application/Service/ReadingCalculate/LuganoCalculateService.cs b/IRaCIS.Core.Application/Service/ReadingCalculate/LuganoCalculateService.cs
index 525065fef..1208adc21 100644
--- a/IRaCIS.Core.Application/Service/ReadingCalculate/LuganoCalculateService.cs
+++ b/IRaCIS.Core.Application/Service/ReadingCalculate/LuganoCalculateService.cs
@@ -1810,7 +1810,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
}
//1、基线期 状态为“肿大”
//与基线相比脾肿大增加的百分比 > 50%
- else if (baseLineState.EqEnum(SpleenState.Swelling) && percentage > 50)
+ else if (baseLineState.EqEnum(SpleenAssessment.Swelling) && percentage > 50)
{
result = SpleenAssessment.Remission;
}
diff --git a/IRaCIS.Core.Domain.Share/Reading/ReadEnum.cs b/IRaCIS.Core.Domain.Share/Reading/ReadEnum.cs
index 19520f6bc..e2ac99422 100644
--- a/IRaCIS.Core.Domain.Share/Reading/ReadEnum.cs
+++ b/IRaCIS.Core.Domain.Share/Reading/ReadEnum.cs
@@ -912,20 +912,25 @@ namespace IRaCIS.Core.Domain.Share
///
public enum SpleenState
{
+ ///
+ /// NA
+ ///
+ NA = -1,
+
///
/// 正常
///
Normal = 1,
///
- /// 肿大
+ /// 部分缓解
///
- Swelling = 2,
+ Remission = 2,
///
- /// 部分缓解稳定
+ /// 稳定
///
- PartialRemission = 3,
+ Stabilization = 3,
///
/// 显著增大
@@ -937,6 +942,11 @@ namespace IRaCIS.Core.Domain.Share
///
NotEvaluable = 5,
+ ///
+ /// 肿大
+ ///
+ Swelling = 6,
+
}
///