MQActivity.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Text.Json;
  5. using TEAMModelOS.SDK.Models;
  6. namespace TEAMModelOS.SDK.Models
  7. {
  8. public class MQActivity :CosmosEntity
  9. {
  10. // public string id { get; set; }
  11. // public string code { get; set; }
  12. public string owner { get; set; }
  13. public List<string> classes { get; set; }
  14. public List<string> stuLists { get; set; }
  15. //如果已经完成则不写入???
  16. public string progress { get; set; }
  17. public string scope { get; set; }
  18. public string school { get; set; }
  19. public string creatorId { get; set; }
  20. // public string pk { get; set; }
  21. public string name { get; set; }
  22. public List<Sub> subjects { get; set; }
  23. public string blob { get; set; }
  24. public long startTime { get; set; }
  25. public long endTime { get; set; }
  26. public string source { get; set; }
  27. public List<JsonElement> targets { get; set; } = new List<JsonElement>();
  28. public List<Dictionary<string, List<string>>> groupLists { get; set; } = new List<Dictionary<string, List<string>>>();
  29. }
  30. public class Sub {
  31. public string id { get; set; }
  32. }
  33. }