ItemBankDto.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. 
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. using System.Text.Json.Serialization;
  6. using TEAMModelOS.Model.Core.Dtos;
  7. namespace TEAMModelOS.Model.Evaluation.Dtos.Own
  8. {
  9. public class ItemBankDto
  10. {
  11. public ItemBankDto()
  12. {
  13. Option = new List<CodeValue>();
  14. Answer = new List<string>();
  15. Children = new List<ItemBankDto>();
  16. }
  17. public string ShaCode { get; set; }
  18. public string PartitionKey { get; set; }
  19. public string RowKey { get; set; }
  20. public string Question { get; set; }
  21. public List<CodeValue> Option { get; set; }
  22. public List<string> Answer { get; set; }
  23. /// <summary>
  24. /// 知识点
  25. /// </summary>
  26. public List<Dictionary<string, object>> Concept { get; set; }
  27. public string Explain { get; set; }
  28. public string Type { get; set; }
  29. public string ResourceCode { get; set; }
  30. public string SubjectCode { get; set; }
  31. public string PShaCode { get; set; }
  32. public int ResourceType { get; set; }
  33. [JsonIgnore]
  34. public List<ItemBankDto> Children { get; set; }
  35. }
  36. }