ArtEvaluation.cs 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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 ArtEvaluation : CosmosEntity
  10. {
  11. public ArtEvaluation()
  12. {
  13. pk = "Art";
  14. }
  15. public string name { get; set; }
  16. public string school { get; set; }
  17. //高级设置
  18. public List<string> settings { get; set; } = new List<string>();
  19. public string creatorId { get; set; }
  20. public long createTime { get; set; }
  21. public long updateTime { get; set; }
  22. //教研类型
  23. public int type { get; set; } = 0;
  24. /// <summary>
  25. /// 行政班
  26. /// </summary>
  27. public List<string> classes { get; set; } = new List<string>();
  28. /// <summary>
  29. /// 学生名单(包含自定义个人学生名单,学校教学班)
  30. /// </summary>
  31. public List<string> stuLists { get; set; } = new List<string>();
  32. public List<string> sIds { get; set; } = new List<string>();
  33. /// <summary>
  34. /// 发布对象全部信息。由前端操作,用于前端回显发布对象的格式。
  35. /// </summary>
  36. public List<JsonElement> targets { get; set; } = new List<JsonElement>();
  37. public string progress { get; set; }
  38. public string scope { get; set; }
  39. public int? status { get; set; } = 0;
  40. //记录该评测内容下blob大小
  41. public long? size { get; set; } = 0;
  42. /// <summary>
  43. ///发布层级 类型 school area
  44. /// </summary>
  45. public string owner { get; set; }
  46. public string areaId { get; set; }
  47. public string pId { get; set; }
  48. public string presenter { get; set; }
  49. public string topic { get; set; }
  50. public long startTime { get; set; }
  51. public long endTime { get; set; }
  52. public string address { get; set; }
  53. //培训内容
  54. public string desc { get; set; }
  55. public string img { get; set; }
  56. public string workId { get; set; }
  57. public string surveyId { get; set; }
  58. public string examId { get; set; }
  59. //发布层级 0校级,1区级
  60. public int? publish { get; set; } = 0;
  61. }
  62. }