[修改bug]

IRC_NewDev
hang 2024-02-16 22:08:52 +08:00
parent 98cf2adf92
commit 6419fa6e61
2 changed files with 3 additions and 1 deletions

View File

@ -42,7 +42,7 @@ namespace IRaCIS.Core.Application.Contracts
public Guid? ConfirmUserId { get; set; }
public bool IsConfirmed => ConfirmTime is not null;
public bool IsConfirmed { get; set; }
public string UserName { get; set; } = string.Empty;

View File

@ -194,6 +194,7 @@ namespace IRaCIS.Core.Application.Services
FullFilePath = needConfirmedUserType.SystemDocument.Path,
IsConfirmed = confirm.ConfirmTime != null,
ConfirmUserId = confirm.ConfirmUserId,
ConfirmTime = confirm.ConfirmTime,
RealName = trialUser.User.FullName,
@ -225,6 +226,7 @@ namespace IRaCIS.Core.Application.Services
UpdateTime = trialDoc.UpdateTime,
SignViewMinimumMinutes = trialDoc.SignViewMinimumMinutes,
IsConfirmed = confirm.ConfirmTime != null,
ConfirmUserId = confirm.ConfirmUserId,
ConfirmTime = confirm.ConfirmTime,
RealName = trialUser.User.FullName,