ArtExam.cs 961 B

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Text.Json;
  6. using System.Threading.Tasks;
  7. namespace TEAMModelOS.SDK.Models.Cosmos.Common
  8. {
  9. public class ArtExam : CosmosEntity
  10. {
  11. public ArtExam()
  12. {
  13. pk = "ArtExam";
  14. }
  15. public string infoId { get; set; }
  16. public string activityId { get; set; }
  17. public string schoolId { get; set; }
  18. public string name { get; set; }
  19. public string blob { get; set; }
  20. public int count { get; set; }
  21. public string periodId { get; set; }
  22. public string periodName { get; set; }
  23. public List<string> periodTypes { get; set; } = new List<string>();
  24. public string subjectId { get; set; }
  25. public string subjectBindId { get; set; }
  26. public long createTime { get; set; }
  27. public List<string> gradeIds { get; set; } = new List<string>();
  28. }
  29. }