返回提交状态
parent
6741f11b27
commit
ce45afa537
|
@ -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))
|
||||
|
|
|
@ -16,7 +16,7 @@ namespace IRaCIS.Core.Domain.Models
|
|||
public Guid SiteId { get; set; }
|
||||
|
||||
|
||||
public VisitStage VisitStage { get; set; }
|
||||
public VisitStage VisitStage { get; set; }iuga
|
||||
public Guid? VisitStageId { get; set; }
|
||||
public int VisitDay { get; set; }
|
||||
public string VisitName { get; set; } = string.Empty;
|
||||
|
|
Loading…
Reference in New Issue