增加最晚最早拍片日期
This commit is contained in:
@@ -312,7 +312,9 @@ namespace IRaCIS.Core.Application.Contracts.DTO
|
||||
public int SubjectAge { get; set; }
|
||||
public string SubjectSex { get; set; } = String.Empty;
|
||||
|
||||
public DateTime? EarliestScanDate { get; set; }
|
||||
|
||||
public DateTime? LatestScanDate { get; set; }
|
||||
public decimal VisitNum { get; set; }
|
||||
public string VisitName { get; set; } = string.Empty;
|
||||
//public DateTime? SVSTDTC { get; set; }
|
||||
|
||||
@@ -523,7 +523,7 @@ namespace IRaCIS.Core.Application.Image.QA
|
||||
[HttpGet("{subjectVisitId:guid}/{trialQCProcess:int}/{currentQCType:int}")]
|
||||
public async Task<TrialVisitQADTO> GetVisitQCInfo(Guid subjectVisitId, [FromRoute] TrialQCProcess trialQCProcess, [FromRoute] CurrentQC currentQCType)
|
||||
{
|
||||
var sv = await _subjectVisitRepository.FirstOrDefaultAsync(t => t.Id == subjectVisitId).IfNullThrowException();
|
||||
var sv = (await _subjectVisitRepository.FirstOrDefaultAsync(t => t.Id == subjectVisitId)).IfNullThrowException();
|
||||
|
||||
if (currentQCType == CurrentQC.First)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user