返回当前领取人信息

This commit is contained in:
2022-04-29 16:18:48 +08:00
parent 7cc48b9342
commit 5fc78db5f7
3 changed files with 10 additions and 4 deletions
@@ -8,7 +8,7 @@ namespace IRaCIS.Core.Application.Contracts.DTO
public class VisitQACommand
{
public QCChallengeCommand QARecord { get; set; }=new QCChallengeCommand();
public QCChallengeCommand QARecord { get; set; } = new QCChallengeCommand();
public List<QARecordTrialTemplateItemCommand> QATrialTemplateItemList { get; set; } = new List<QARecordTrialTemplateItemCommand>();
}
@@ -150,6 +150,10 @@ namespace IRaCIS.Core.Application.Contracts.DTO
public class QCChallengeWithUser : QCChallengeCommand
{
public Guid? CurrentActionUserId { get; set; }
public string CurrentActionUserName { get; set; } = String.Empty;
public Guid SubjectId { get; set; }
public UserTypeEnum UserTypeEnum { get; set; }
public Guid CreateUserId { get; set; }
@@ -431,7 +435,7 @@ namespace IRaCIS.Core.Application.Contracts.DTO
/// </summary>
public class CloseCheckChallengeDto
{
public Guid subjectVisitId { get; set; }
public Guid subjectVisitId { get; set; }
public string CloseCheckChallenge { get; set; }
}