代码修改
parent
0b59b0a2cb
commit
1f446ac60f
|
@ -1923,21 +1923,21 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
|
|
||||||
public int? NumberOfFrames { get; set; }
|
public int? NumberOfFrames { get; set; }
|
||||||
|
|
||||||
public string FromMark { get; set; } = string.Empty;
|
public string? FromMark { get; set; }
|
||||||
|
|
||||||
public string ReportMark { get; set; } = string.Empty;
|
public string? ReportMark { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 标记工具
|
/// 标记工具
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string MarkTool { get; set; } = string.Empty;
|
public string? MarkTool { get; set; }
|
||||||
|
|
||||||
public decimal RowIndex { get; set; }
|
public decimal RowIndex { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 截图地址
|
/// 截图地址
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string PicturePath { get; set; } = string.Empty;
|
public string? PicturePath { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 任务Id
|
/// 任务Id
|
||||||
|
@ -1949,9 +1949,9 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public Guid TrialId { get; set; }
|
public Guid TrialId { get; set; }
|
||||||
|
|
||||||
public string MeasureData { get; set; } = string.Empty;
|
public string? MeasureData { get; set; }
|
||||||
|
|
||||||
public string? OtherMeasureData { get; set; } = string.Empty;
|
public string? OtherMeasureData { get; set; }
|
||||||
|
|
||||||
public Guid? SeriesId { get; set; }
|
public Guid? SeriesId { get; set; }
|
||||||
|
|
||||||
|
@ -1969,7 +1969,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool IsCanEditPosition { get; set; } = false;
|
public bool? IsCanEditPosition { get; set; }
|
||||||
|
|
||||||
public decimal FristAddTaskNum { get; set; } = 0;
|
public decimal FristAddTaskNum { get; set; } = 0;
|
||||||
|
|
||||||
|
@ -1977,9 +1977,9 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
|
|
||||||
public decimal? WL { get; set; }
|
public decimal? WL { get; set; }
|
||||||
|
|
||||||
public string BlindName { get; set; } = string.Empty;
|
public string? BlindName { get; set; }
|
||||||
|
|
||||||
public bool IsDicomReading { get; set; } = true;
|
public bool? IsDicomReading { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// InstanceId
|
/// InstanceId
|
||||||
|
|
|
@ -2094,7 +2094,7 @@ namespace IRaCIS.Application.Services
|
||||||
|
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
await _readingTableAnswerRowInfoRepository.NotUpdateEmptyAsync(inDto) ;
|
await _readingTableAnswerRowInfoRepository.UpdateFromDTOAsync(inDto) ;
|
||||||
|
|
||||||
|
|
||||||
foreach (var item in inDto.AnswerList)
|
foreach (var item in inDto.AnswerList)
|
||||||
|
|
Loading…
Reference in New Issue