This commit is contained in:
he
2022-08-01 16:45:58 +08:00
parent 435384cf92
commit 00427897a6
7 changed files with 289 additions and 12 deletions
@@ -106,6 +106,20 @@ namespace IRaCIS.Core.API.Controllers
}
#endregion
/// <summary>
/// 提交肿瘤学阅片任务
/// </summary>
/// <param name="opt"></param>
/// <returns></returns>
[HttpPost, Route("Inspection/ReadingImageTask/SetOncologyReadingInfo")]
[UnitOfWork]
public async Task<IResponseOutput> SetOncologyReadingInfo(DataInspectionDto<SetOncologyReadingInfoInDto> opt)
{
var singid = await _inspectionService.RecordSing(opt.SignInfo);
var result = await _iReadingImageTaskService.SetOncologyReadingInfo(opt.Data);
await _inspectionService.CompletedSign(singid, result);
return result;
}
/// <summary>
/// 提交全局阅片任务