diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingMedicalReviewDto.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingMedicalReviewDto.cs
index b9fa48018..74e0d4a43 100644
--- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingMedicalReviewDto.cs
+++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingMedicalReviewDto.cs
@@ -197,6 +197,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
///
public string UserTypeShortName { get; set; }
+ ///
+ /// 医学审核对话关闭原因
+ ///
+ public MedicalDialogClose? MedicalDialogCloseEnum { get; set; }
+
///
/// 用户角色枚举
///
diff --git a/IRaCIS.Core.Application/Service/Reading/MedicalAudit/ReadingMedicalReviewService.cs b/IRaCIS.Core.Application/Service/Reading/MedicalAudit/ReadingMedicalReviewService.cs
index b65ffd577..9a8845b91 100644
--- a/IRaCIS.Core.Application/Service/Reading/MedicalAudit/ReadingMedicalReviewService.cs
+++ b/IRaCIS.Core.Application/Service/Reading/MedicalAudit/ReadingMedicalReviewService.cs
@@ -531,7 +531,8 @@ namespace IRaCIS.Core.Application.Service
TaskMedicalReviewId = inDto.TaskMedicalReviewId,
VisitTaskId= taskMedical.VisitTaskId,
UserTypeShortName = _userInfo.UserTypeShortName,
- Content = inDto.MedicalDialogCloseEnum.GetDescription()+ (inDto.DialogCloseReason.IsNullOrEmpty()? inDto.DialogCloseReason:","+ inDto.DialogCloseReason),
+ MedicalDialogCloseEnum= inDto.MedicalDialogCloseEnum,
+ Content = inDto.DialogCloseReason,
UserTypeEnumInt = _userInfo.UserTypeEnumInt,
};
diff --git a/IRaCIS.Core.Domain/Reading/MedicalAudit/ReadingMedicalReviewDialog.cs b/IRaCIS.Core.Domain/Reading/MedicalAudit/ReadingMedicalReviewDialog.cs
index 54813200c..9976c0d01 100644
--- a/IRaCIS.Core.Domain/Reading/MedicalAudit/ReadingMedicalReviewDialog.cs
+++ b/IRaCIS.Core.Domain/Reading/MedicalAudit/ReadingMedicalReviewDialog.cs
@@ -37,10 +37,15 @@ namespace IRaCIS.Core.Domain.Models
/// 用户角色
///
public string UserTypeShortName { get; set; }
-
+
///
- /// 用户角色枚举
- ///
+ /// 医学审核对话关闭原因
+ ///
+ public MedicalDialogClose? MedicalDialogCloseEnum { get; set; }
+
+ ///
+ /// 用户角色枚举
+ ///
public int UserTypeEnumInt { get; set; }
///