修改一版

Uat_Study
he 2022-07-08 14:17:21 +08:00
parent 7b94d2a74e
commit 38004c4dcf
2 changed files with 7 additions and 2 deletions

View File

@ -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,
};

View File

@ -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
/// <summary>
/// 无
/// </summary>
[Display(Name = "")]
None = 0,
/// <summary>
/// 问题已解决
/// </summary>
[Display(Name = "问题已解决")]
ProblemSolved = 1,
/// <summary>
/// 问题无法解决
/// </summary>
[Display(Name = "问题无法解决")]
Unresolvable = 2,
/// <summary>
/// IR申请重阅
/// </summary>
[Display(Name = "IR申请重阅")]
IRApplyReReading = 3,
/// <summary>
/// 其他原因
/// </summary>
[Display(Name = "IR申请重阅")]
OtherReason = 4
}