MQActivity.cs 798 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelFunction
  5. {
  6. public class MQActivity
  7. {
  8. public string id { get; set; }
  9. public string code { get; set; }
  10. public string owner { get; set; }
  11. public List<string> classes { get; set; }
  12. //如果已经完成则不写入???
  13. public string progress { get; set; }
  14. public string scope { get; set; }
  15. public string school { get; set; }
  16. public string creatorId { get; set; }
  17. public string pk { get; set; }
  18. public string name { get; set; }
  19. public List<string> subjects { get; set; }
  20. public string blob { get; set; }
  21. public long startTime { get; set; }
  22. public long endTime { get; set; }
  23. }
  24. }