Uat_Study
parent
b194451752
commit
1ad7308108
|
@ -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>
|
||||||
|
|
|
@ -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,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -38,6 +38,11 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string UserTypeShortName { get; set; }
|
public string UserTypeShortName { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 医学审核对话关闭原因
|
||||||
|
/// </summary>
|
||||||
|
public MedicalDialogClose? MedicalDialogCloseEnum { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 用户角色枚举
|
/// 用户角色枚举
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
Loading…
Reference in New Issue