[修改bug]
parent
98cf2adf92
commit
6419fa6e61
|
@ -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;
|
||||
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue