ExamResultDto.cs 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Text;
  5. using TEAMModelOS.SDK.Context.Attributes.Azure;
  6. using TEAMModelOS.SDK.DI;
  7. namespace TEAMModelOS.SDK.Models
  8. {
  9. /// <summary>
  10. /// 考试成绩信息
  11. /// </summary>
  12. public class ExamResultDto : CosmosEntity
  13. {
  14. public ExamResultDto()
  15. {
  16. classes = new List<Dictionary<string, int[]>>();
  17. result = new List<List<double>>();
  18. ids = new List<string>();
  19. point = new List<double>();
  20. }
  21. public string name { get; set; }
  22. public string time { get; set; }
  23. public string subjectCode { get; set; }
  24. public List<Dictionary<string, int[]>> classes { get; set; }
  25. public List<List<double>> result { get; set; }
  26. public List<string> ids { get; set; }
  27. public List<double> point { get; set; }
  28. public string schoolCode { get; set; }
  29. public string paperCode { get; set; }
  30. }
  31. }