ItemInfo.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. using System.Collections.Generic;
  2. using TEAMModelOS.SDK.Models;
  3. namespace TEAMModelBI.Models
  4. {
  5. /// <summary>
  6. /// 试题的结构
  7. /// </summary>
  8. public class BlobItemInfo
  9. {
  10. public string id { get; set; }
  11. public string pid { get; set; }
  12. public Exercise exercise { get; set; }
  13. public int render { get; set; }
  14. public Questions item { get; set; }
  15. }
  16. public class Exercise
  17. {
  18. public List<string> answer { get; set; }
  19. public string explain { get; set; }
  20. public string type { get; set; }
  21. public int opts { get; set; }
  22. public List<string> knowledge { get; set; }
  23. public int field { get; set; }
  24. public int level { get; set; }
  25. public string periodId { get; set; }
  26. public List<string> gradeIds { get; set; }
  27. public string subjectId { get; set; }
  28. public List<string> children { get; set; } = new List<string>();
  29. public string scope { get; set; }
  30. public int score { get; set; }
  31. public List<Repair> repair { get; set; } = new List<Repair>();
  32. }
  33. public class Questions
  34. {
  35. public string question { get; set; }
  36. public List<OptionInfo> option { get; set; }
  37. }
  38. public class OptionInfo
  39. {
  40. public string code { get; set; }
  41. public string value { get; set; }
  42. }
  43. }