This commit is contained in:
he
2025-01-13 15:22:54 +08:00
parent e022eb058b
commit f8fea6561d
2 changed files with 11 additions and 0 deletions
@@ -1877,6 +1877,9 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public class GetTrialQuestionExportResultOutDto
{
public CriterionType CriterionType { get; set; }
public CriterionGroup CriterionGroup { get; set; }
public List<TrialQuestionExport> QuestionList = new List<TrialQuestionExport>();
public List<TrialQuestionExportDic> DicList = new List<TrialQuestionExportDic>();
@@ -1900,6 +1903,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public int ShowOrder { get; set; }
public bool IsTableQuestion { get; set; }
public bool HasChildren => Children.Count() > 0;
public List<TrialQuestionExport> Children { get; set; } = new List<TrialQuestionExport>();