返回提交状态
This commit is contained in:
@@ -174,6 +174,11 @@ namespace IRaCIS.Core.Application.Contracts
|
||||
public Guid? PreliminaryAuditUserId { get; set; }
|
||||
public Guid? CurrentActionUserId { get; set; }
|
||||
|
||||
|
||||
public SubmitStateEnum SubmitState { get; set; }
|
||||
|
||||
|
||||
|
||||
public string? CurrentActionUserName { get; set; }
|
||||
|
||||
public bool IsBaseLine { get; set; }
|
||||
|
||||
@@ -207,6 +207,8 @@ namespace IRaCIS.Core.Application.Service
|
||||
.ForMember(d => d.PreliminaryAuditUserId, u => u.MapFrom(s => s.SubjectVisit.PreliminaryAuditUserId))
|
||||
.ForMember(d => d.CurrentActionUserId, u => u.MapFrom(s => s.SubjectVisit.CurrentActionUserId))
|
||||
.ForMember(d => d.CurrentActionUserName, u => u.MapFrom(s => s.SubjectVisit .CurrentActionUser.UserName))
|
||||
.ForMember(d => d.SubmitState, u => u.MapFrom(s => s.SubjectVisit.SubmitState))
|
||||
|
||||
|
||||
.ForMember(d => d.SiteId, u => u.MapFrom(s => s.SubjectVisit.SiteId))
|
||||
.ForMember(d => d.AuditState, u => u.MapFrom(s => s.SubjectVisit.AuditState))
|
||||
|
||||
Reference in New Issue
Block a user