diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingMedicalReviewService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingMedicalReviewService.cs
index 0e201ca5f..a00763fb2 100644
--- a/IRaCIS.Core.Application/Service/Reading/ReadingMedicalReviewService.cs
+++ b/IRaCIS.Core.Application/Service/Reading/ReadingMedicalReviewService.cs
@@ -337,7 +337,7 @@ namespace IRaCIS.Core.Application.Service
{
TaskMedicalReviewId = inDto.TaskMedicalReviewId,
UserTypeShortName = _userInfo.UserTypeShortName,
- Content = "MIM关闭医学审核对话",
+ Content = inDto.MedicalDialogCloseEnum.GetDescription()+ (inDto.DialogCloseReason.IsNullOrEmpty()? inDto.DialogCloseReason:","+ inDto.DialogCloseReason),
UserTypeEnumInt = _userInfo.UserTypeEnumInt,
};
diff --git a/IRaCIS.Core.Domain.Share/Allocation/AllocationRelation.cs b/IRaCIS.Core.Domain.Share/Allocation/AllocationRelation.cs
index 4831fc755..71c304559 100644
--- a/IRaCIS.Core.Domain.Share/Allocation/AllocationRelation.cs
+++ b/IRaCIS.Core.Domain.Share/Allocation/AllocationRelation.cs
@@ -1,5 +1,5 @@
-
+using System.ComponentModel.DataAnnotations;
namespace IRaCIS.Core.Domain.Share
{
public enum ReadingCategory
@@ -87,26 +87,31 @@ namespace IRaCIS.Core.Domain.Share
///
/// 无
///
+ [Display(Name = "")]
None = 0,
///
/// 问题已解决
///
+ [Display(Name = "问题已解决")]
ProblemSolved = 1,
///
/// 问题无法解决
///
+ [Display(Name = "问题无法解决")]
Unresolvable = 2,
///
/// IR申请重阅
///
+ [Display(Name = "IR申请重阅")]
IRApplyReReading = 3,
///
/// 其他原因
///
+ [Display(Name = "IR申请重阅")]
OtherReason = 4
}