Merge branch 'Test_IRC_Net8' of https://gitea.frp.extimaging.com/XCKJ/irc-netcore-api into Test_IRC_Net8
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
commit
ad77b66bdd
|
|
@ -117,4 +117,10 @@ namespace IRaCIS.Core.Application.Contracts.Dicom.DTO
|
||||||
public bool HasLabel { get; set; } = false;
|
public bool HasLabel { get; set; } = false;
|
||||||
public bool KeySeries { get; set; } = false;
|
public bool KeySeries { get; set; } = false;
|
||||||
}
|
}
|
||||||
|
public class UpdateImageResizeDTO
|
||||||
|
{
|
||||||
|
public Guid SeriesId { get; set; }
|
||||||
|
|
||||||
|
public string ImageResizePath { get; set; }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,18 @@ namespace IRaCIS.Core.Application.Services
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 更新缩略图路径
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="dto"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
[HttpPost]
|
||||||
|
public async Task<IResponseOutput> UpdateImageResizePath(UpdateImageResizeDTO dto)
|
||||||
|
{
|
||||||
|
await _seriesRepository.UpdatePartialFromQueryAsync(t => t.Id == dto.SeriesId, u => new DicomSeries() { ImageResizePath = dto.ImageResizePath }, true);
|
||||||
|
|
||||||
|
return ResponseOutput.Ok();
|
||||||
|
}
|
||||||
|
|
||||||
//医生读片那一块有耦合,关键序列 这里暂时留存
|
//医生读片那一块有耦合,关键序列 这里暂时留存
|
||||||
/// <summary> 指定资源Id,获取Dicom检查所属序列信息列表 </summary>
|
/// <summary> 指定资源Id,获取Dicom检查所属序列信息列表 </summary>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue