修改一版

Test.EIImageViewer
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, TaskMedicalReviewId = inDto.TaskMedicalReviewId,
UserTypeShortName = _userInfo.UserTypeShortName, UserTypeShortName = _userInfo.UserTypeShortName,
Content = "MIM关闭医学审核对话", Content = inDto.MedicalDialogCloseEnum.GetDescription()+ (inDto.DialogCloseReason.IsNullOrEmpty()? inDto.DialogCloseReason:","+ inDto.DialogCloseReason),
UserTypeEnumInt = _userInfo.UserTypeEnumInt, UserTypeEnumInt = _userInfo.UserTypeEnumInt,
}; };

View File

@ -1,5 +1,5 @@
 
using System.ComponentModel.DataAnnotations;
namespace IRaCIS.Core.Domain.Share namespace IRaCIS.Core.Domain.Share
{ {
public enum ReadingCategory public enum ReadingCategory
@ -87,26 +87,31 @@ namespace IRaCIS.Core.Domain.Share
/// <summary> /// <summary>
/// 无 /// 无
/// </summary> /// </summary>
[Display(Name = "")]
None = 0, None = 0,
/// <summary> /// <summary>
/// 问题已解决 /// 问题已解决
/// </summary> /// </summary>
[Display(Name = "问题已解决")]
ProblemSolved = 1, ProblemSolved = 1,
/// <summary> /// <summary>
/// 问题无法解决 /// 问题无法解决
/// </summary> /// </summary>
[Display(Name = "问题无法解决")]
Unresolvable = 2, Unresolvable = 2,
/// <summary> /// <summary>
/// IR申请重阅 /// IR申请重阅
/// </summary> /// </summary>
[Display(Name = "IR申请重阅")]
IRApplyReReading = 3, IRApplyReReading = 3,
/// <summary> /// <summary>
/// 其他原因 /// 其他原因
/// </summary> /// </summary>
[Display(Name = "IR申请重阅")]
OtherReason = 4 OtherReason = 4
} }