Uat_Study
hang 2022-06-24 09:37:21 +08:00
parent b661d5b151
commit bc519fc598
2 changed files with 3 additions and 3 deletions

View File

@ -107,7 +107,7 @@ namespace IRaCIS.Core.Application.ViewModel
public DateTime? RequestReReadingTime { get; set; }
public string RequestReReadingReason { get; set; } = string.Empty;
public string RequestReReadingReasonEnum { get; set; } = string.Empty;
public DateTime? SuggesteFinishedTime { get; set; }
@ -423,7 +423,7 @@ namespace IRaCIS.Core.Application.ViewModel
public Guid TrialId { get; set; }
public RequestReReadingType RequestReReadingTypeEnum { get; set; }
public RequestReReadingType RequestReReadingType { get; set; }
public string RequestReReadingReason { get; set; } = string.Empty;
}

View File

@ -900,7 +900,7 @@ namespace IRaCIS.Core.Application.Service
task.RequestReReadingReason = applyReReadingCommand.RequestReReadingReason;
task.RequestReReadingType = applyReReadingCommand.RequestReReadingTypeEnum;
task.RequestReReadingType = applyReReadingCommand.RequestReReadingType;
task.RequestReReadingTime = DateTime.Now;
task.RequestReReadingUserId = _userInfo.Id;