This commit is contained in:
he
2022-08-04 15:23:41 +08:00
parent 0957d0b1a0
commit f2202daa75
@@ -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();