ItemInfo.cs 685 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Text;
  5. namespace HTEXLib.DOCX.Models
  6. {
  7. public class ItemInfo : BaseItem
  8. {
  9. public ItemInfo() {
  10. answer = new List<string>();
  11. knowledge = new List<string>();
  12. gradeIds = new List<string>();
  13. repair = new List<Repair>();
  14. children = new List<ItemInfo>();
  15. option = new List<CodeValue>();
  16. }
  17. public List<ItemInfo> children { get; set; }
  18. public string question { get; set; }
  19. // 选项 单选 多选 判断
  20. public List<CodeValue> option { get; set; }
  21. }
  22. }