修改临床数据

This commit is contained in:
2022-08-12 17:11:46 +08:00
parent 349839913c
commit 490e366408
4 changed files with 97 additions and 3 deletions
@@ -98,6 +98,16 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary>
public string Path { get; set; }
/// <summary>
/// 是否盲化
/// </summary>
public bool? IsBlind { get; set; }
/// <summary>
/// 是否完整
/// </summary>
public bool? IsComplete { get; set; }
//public List<GetReadingClinicalDataListOutDto> ReadingClinicalDataList { get; set; }
public List<GetFileDto> PDFFileList { get; set; } = new List<GetFileDto>();
@@ -290,7 +300,21 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
}
public class PMClinicalDataConfirmCommand
{
public Guid Id { get; set; }
/// <summary>
/// 是否盲化
/// </summary>
public bool? IsBlind { get; set; }
/// <summary>
/// 是否完整
/// </summary>
public bool? IsComplete { get; set; }
}
public class GetReadingClinicalDataListOutDto
@@ -347,6 +371,17 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary>
public bool IsSign { get; set; }
/// <summary>
/// 是否盲化
/// </summary>
public bool? IsBlind { get; set; }
/// <summary>
/// 是否完整
/// </summary>
public bool? IsComplete { get; set; }
/// <summary>
/// 文件数量
/// </summary>