Uat_Study
he 2022-06-13 09:28:55 +08:00
parent c1576d58aa
commit 38e10d647e
2 changed files with 30 additions and 8 deletions

View File

@ -40,15 +40,15 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public bool IsVisit { get; set; }
/// <summary>
/// 是否盲化
/// </summary>
public bool IsBlind { get; set; }
///// <summary>
///// 是否盲化
///// </summary>
//public bool IsBlind { get; set; }
/// <summary>
/// 是否完整
/// </summary>
public bool IsComplete { get; set; }
///// <summary>
///// 是否完整
///// </summary>
//public bool IsComplete { get; set; }
/// <summary>
/// 要删除的对象
@ -60,6 +60,16 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public List<FileDto> AddFileList { get; set; } = new List<FileDto>();
}
/// <summary>
/// 是否盲化
/// </summary>
public class SetReadingClinicalDataIsBlind
{
public Guid Id { get; set; }
public bool IsBlind { get; set; }
}
public class FileDto
{
/// <summary>

View File

@ -111,6 +111,18 @@ namespace IRaCIS.Application.Services
}
///// <summary>
///// 设置临床数据是否盲化
///// </summary>
///// <returns></returns>
//[HttpPost]
//public async Task<IResponseOutput> SetReadingClinicalDataIsBlind(SetReadingClinicalDataIsBlind inDto)
//{
// await _readingClinicalDataRepository.UpdatePartialFromQueryAsync(inDto.Id, x=>new ReadingClinicalData() {
// IsBlind=inDto.IsBlind,
// });
// return ResponseOutput.Ok(await _readingClinicalDataRepository.SaveChangesAsync());
//}
/// <summary>
/// 删除