Uat_Study
he 2022-12-28 17:57:57 +08:00
parent b194451752
commit 1ad7308108
3 changed files with 15 additions and 4 deletions

View File

@ -197,6 +197,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary> /// </summary>
public string UserTypeShortName { get; set; } public string UserTypeShortName { get; set; }
/// <summary>
/// 医学审核对话关闭原因
/// </summary>
public MedicalDialogClose? MedicalDialogCloseEnum { get; set; }
/// <summary> /// <summary>
/// 用户角色枚举 /// 用户角色枚举
/// </summary> /// </summary>

View File

@ -531,7 +531,8 @@ namespace IRaCIS.Core.Application.Service
TaskMedicalReviewId = inDto.TaskMedicalReviewId, TaskMedicalReviewId = inDto.TaskMedicalReviewId,
VisitTaskId= taskMedical.VisitTaskId, VisitTaskId= taskMedical.VisitTaskId,
UserTypeShortName = _userInfo.UserTypeShortName, UserTypeShortName = _userInfo.UserTypeShortName,
Content = inDto.MedicalDialogCloseEnum.GetDescription()+ (inDto.DialogCloseReason.IsNullOrEmpty()? inDto.DialogCloseReason:","+ inDto.DialogCloseReason), MedicalDialogCloseEnum= inDto.MedicalDialogCloseEnum,
Content = inDto.DialogCloseReason,
UserTypeEnumInt = _userInfo.UserTypeEnumInt, UserTypeEnumInt = _userInfo.UserTypeEnumInt,
}; };

View File

@ -37,10 +37,15 @@ namespace IRaCIS.Core.Domain.Models
/// 用户角色 /// 用户角色
/// </summary> /// </summary>
public string UserTypeShortName { get; set; } public string UserTypeShortName { get; set; }
/// <summary> /// <summary>
/// 用户角色枚举 /// 医学审核对话关闭原因
/// </summary> /// </summary>
public MedicalDialogClose? MedicalDialogCloseEnum { get; set; }
/// <summary>
/// 用户角色枚举
/// </summary>
public int UserTypeEnumInt { get; set; } public int UserTypeEnumInt { get; set; }
/// <summary> /// <summary>