Test.EIImageViewer
parent
fda332f424
commit
e56df5384e
|
@ -52,6 +52,8 @@ namespace IRaCIS.Application.Contracts
|
|||
public string Phone { get; set; } = string.Empty;
|
||||
public string Introduction { get; set; } = string.Empty;
|
||||
public string EMail { get; set; } = string.Empty;
|
||||
|
||||
public ReviewerInformationConfirmStatus ReviewStatus { get; set; } = ReviewerInformationConfirmStatus.ConfirmRefuse;
|
||||
public string WeChat { get; set; } = string.Empty;
|
||||
|
||||
//部门
|
||||
|
|
|
@ -7,6 +7,11 @@
|
|||
public Guid DoctorId { get; set; }
|
||||
|
||||
public Guid? PhaseId { get; set; }
|
||||
|
||||
public DateTime? StartTime { get; set; }
|
||||
|
||||
public DateTime? EndTime { get; set; }
|
||||
|
||||
public string EvaluationContent { get; set; } = String.Empty;
|
||||
|
||||
public int VisitReadingCount { get; set; }
|
||||
|
|
|
@ -32,5 +32,9 @@ namespace IRaCIS.Core.Domain.Models
|
|||
public DateTime UpdateTime { get; set; }
|
||||
|
||||
public int VisitReadingCount { get; set; }
|
||||
|
||||
public DateTime? StartTime { get; set; }
|
||||
|
||||
public DateTime? EndTime { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue