增加最晚最早拍片日期
parent
be623e9b83
commit
fa924736a8
|
@ -312,7 +312,9 @@ namespace IRaCIS.Core.Application.Contracts.DTO
|
||||||
public int SubjectAge { get; set; }
|
public int SubjectAge { get; set; }
|
||||||
public string SubjectSex { get; set; } = String.Empty;
|
public string SubjectSex { get; set; } = String.Empty;
|
||||||
|
|
||||||
|
public DateTime? EarliestScanDate { get; set; }
|
||||||
|
|
||||||
|
public DateTime? LatestScanDate { get; set; }
|
||||||
public decimal VisitNum { get; set; }
|
public decimal VisitNum { get; set; }
|
||||||
public string VisitName { get; set; } = string.Empty;
|
public string VisitName { get; set; } = string.Empty;
|
||||||
//public DateTime? SVSTDTC { get; set; }
|
//public DateTime? SVSTDTC { get; set; }
|
||||||
|
|
|
@ -523,7 +523,7 @@ namespace IRaCIS.Core.Application.Image.QA
|
||||||
[HttpGet("{subjectVisitId:guid}/{trialQCProcess:int}/{currentQCType:int}")]
|
[HttpGet("{subjectVisitId:guid}/{trialQCProcess:int}/{currentQCType:int}")]
|
||||||
public async Task<TrialVisitQADTO> GetVisitQCInfo(Guid subjectVisitId, [FromRoute] TrialQCProcess trialQCProcess, [FromRoute] CurrentQC currentQCType)
|
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)
|
if (currentQCType == CurrentQC.First)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue