diff --git a/IRaCIS.Core.Application/Service/QC/QCQuestionService.cs b/IRaCIS.Core.Application/Service/QC/QCQuestionService.cs
index 52fc93a3e..e6ed79c48 100644
--- a/IRaCIS.Core.Application/Service/QC/QCQuestionService.cs
+++ b/IRaCIS.Core.Application/Service/QC/QCQuestionService.cs
@@ -129,6 +129,7 @@ namespace IRaCIS.Core.Application.Contracts
/// 不传为获取系统的
///
///
+ [HttpPost]
public async Task> GetQuestionView(QCQuestionViewInDto inDto)
{
var question = new List();
@@ -152,7 +153,7 @@ namespace IRaCIS.Core.Application.Contracts
- public void GetQuestionChild(QCQuestionView parent, List dataList)
+ private void GetQuestionChild(QCQuestionView parent, List dataList)
{
parent.ChildList = dataList.Where(x => x.ParentId == parent.Id).ToList();