修改
This commit is contained in:
@@ -197,6 +197,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||
/// </summary>
|
||||
public string UserTypeShortName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 医学审核对话关闭原因
|
||||
/// </summary>
|
||||
public MedicalDialogClose? MedicalDialogCloseEnum { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 用户角色枚举
|
||||
/// </summary>
|
||||
|
||||
@@ -531,7 +531,8 @@ namespace IRaCIS.Core.Application.Service
|
||||
TaskMedicalReviewId = inDto.TaskMedicalReviewId,
|
||||
VisitTaskId= taskMedical.VisitTaskId,
|
||||
UserTypeShortName = _userInfo.UserTypeShortName,
|
||||
Content = inDto.MedicalDialogCloseEnum.GetDescription()+ (inDto.DialogCloseReason.IsNullOrEmpty()? inDto.DialogCloseReason:","+ inDto.DialogCloseReason),
|
||||
MedicalDialogCloseEnum= inDto.MedicalDialogCloseEnum,
|
||||
Content = inDto.DialogCloseReason,
|
||||
UserTypeEnumInt = _userInfo.UserTypeEnumInt,
|
||||
};
|
||||
|
||||
|
||||
@@ -37,10 +37,15 @@ namespace IRaCIS.Core.Domain.Models
|
||||
/// 用户角色
|
||||
/// </summary>
|
||||
public string UserTypeShortName { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 用户角色枚举
|
||||
/// </summary>
|
||||
/// 医学审核对话关闭原因
|
||||
/// </summary>
|
||||
public MedicalDialogClose? MedicalDialogCloseEnum { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 用户角色枚举
|
||||
/// </summary>
|
||||
public int UserTypeEnumInt { get; set; }
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user