修改一版

This commit is contained in:
he
2022-07-21 14:20:44 +08:00
parent e1f3e20962
commit 25584cda9e
4 changed files with 332 additions and 120 deletions
@@ -106,6 +106,21 @@ namespace IRaCIS.Core.API.Controllers
#endregion
/// <summary>
/// 提交全局阅片任务
/// </summary>
/// <param name="opt"></param>
/// <returns></returns>
[HttpPost, Route("Inspection/ReadingImageTask/SubmitGlobalReadingInfo")]
[UnitOfWork]
public async Task<IResponseOutput> SubmitGlobalReadingInfo(DataInspectionDto<SaveGlobalReadingInfoInDto> opt)
{
var singid = await _inspectionService.RecordSing(opt.SignInfo);
var result = await _iReadingImageTaskService.SubmitGlobalReadingInfo(opt.Data);
await _inspectionService.CompletedSign(singid, result);
return result;
}
/// <summary>