ExamDto.cs 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. using TEAMModelOS.SDK.Models;
  6. namespace TEAMModelOS.Models.Dto
  7. {
  8. public class ExamDto
  9. {
  10. public string id { get; set; }
  11. public string name { get; set; }
  12. public List<Grade> grades { get; set; } = new List<Grade>();
  13. public List<string> targetClasses { get; set; } = new List<string>();
  14. public List<Papers> papers { get; set; } = new List<Papers>();
  15. public List<ExamSubject> subjects { get; set; } = new List<ExamSubject>();
  16. public PeriodSimple period { get; set; } = new PeriodSimple();
  17. public string school { get; set; }
  18. public string creatorId { get; set; }
  19. /// <summary>
  20. /// 施测起始时间
  21. /// </summary>
  22. public long startTime { get; set; }
  23. /// <summary>
  24. /// 施测结束时间
  25. /// </summary>
  26. public long endTime { get; set; }
  27. public string type { get; set; }
  28. public Custom examType { get; set; }
  29. }
  30. public class TargetClass {
  31. public string id { get; set; }
  32. public string name { get; set; }
  33. }
  34. public class Papers
  35. {
  36. public string id { get; set; }
  37. public string name { get; set; }
  38. public string itemCount { get; set; }
  39. public List<string> points { get; set; } = new List<string>();
  40. public List<string> answers { get; set; } = new List<string>();
  41. }
  42. }