Uat_Study
he 2022-08-04 15:23:41 +08:00
parent 0957d0b1a0
commit f2202daa75
1 changed files with 2 additions and 1 deletions

View File

@ -129,6 +129,7 @@ namespace IRaCIS.Core.Application.Contracts
/// 不传为获取系统的
/// </remarks>
/// <returns></returns>
[HttpPost]
public async Task<List<QCQuestionView>> GetQuestionView(QCQuestionViewInDto inDto)
{
var question = new List<QCQuestionView>();
@ -152,7 +153,7 @@ namespace IRaCIS.Core.Application.Contracts
public void GetQuestionChild(QCQuestionView parent, List<QCQuestionView> dataList)
private void GetQuestionChild(QCQuestionView parent, List<QCQuestionView> dataList)
{
parent.ChildList = dataList.Where(x => x.ParentId == parent.Id).ToList();