From a790f7d09b12c55206b9707f750338aeaf09ad30 Mon Sep 17 00:00:00 2001 From: hang <872297557@qq.com> Date: Mon, 16 May 2022 17:00:21 +0800 Subject: [PATCH] xx --- IRaCIS.Core.Application/Service/QC/QCOperationService.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/IRaCIS.Core.Application/Service/QC/QCOperationService.cs b/IRaCIS.Core.Application/Service/QC/QCOperationService.cs index 0af626305..8ec87a3e4 100644 --- a/IRaCIS.Core.Application/Service/QC/QCOperationService.cs +++ b/IRaCIS.Core.Application/Service/QC/QCOperationService.cs @@ -20,6 +20,8 @@ using Newtonsoft.Json; using IRaCIS.Core.Infrastructure; using IRaCIS.Core.Application.Service.Inspection.DTO; using Nito.AsyncEx; +using System.ComponentModel.DataAnnotations; + namespace IRaCIS.Core.Application.Image.QA { [ApiExplorerSettings(GroupName = "Image")] @@ -947,7 +949,7 @@ namespace IRaCIS.Core.Application.Image.QA #endregion [HttpGet] - public async Task IsCanQCOpt(Guid sujectVisitId) + public async Task IsQCCanOpt([FromQuery,NotDefault]Guid sujectVisitId) { await VerifyIsCanQCAsync(null,sujectVisitId); }