Uat_Study
parent
c1576d58aa
commit
38e10d647e
|
@ -40,15 +40,15 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
public bool IsVisit { get; set; }
|
public bool IsVisit { get; set; }
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
///// <summary>
|
||||||
/// 是否盲化
|
///// 是否盲化
|
||||||
/// </summary>
|
///// </summary>
|
||||||
public bool IsBlind { get; set; }
|
//public bool IsBlind { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
///// <summary>
|
||||||
/// 是否完整
|
///// 是否完整
|
||||||
/// </summary>
|
///// </summary>
|
||||||
public bool IsComplete { get; set; }
|
//public bool IsComplete { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 要删除的对象
|
/// 要删除的对象
|
||||||
|
@ -60,6 +60,16 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
public List<FileDto> AddFileList { get; set; } = new List<FileDto>();
|
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
|
public class FileDto
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
@ -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>
|
/// <summary>
|
||||||
/// 删除
|
/// 删除
|
||||||
|
|
Loading…
Reference in New Issue