CouseExam.cs 4.7 KB

1234567891011121314151617181920212223242526
  1. using Newtonsoft.Json;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. using TEAMModelOS.SDK.Context.Attributes.Azure;
  6. namespace TEAMModelOS.Model.Evaluation.Models.CosmosModels
  7. {
  8. [TableSpace(Name = "Evaluation")]
  9. public class CouseExam
  10. {
  11. [JsonProperty(PropertyName = "id")]
  12. public string Id { get; set; }
  13. public string Number { get; set; }
  14. public string ExNO { get; set; }
  15. public string ExName { get; set; }
  16. public string ExTime { get; set; }
  17. public int AcademicYear { get; set; }
  18. public int SOrder { get; set; }
  19. [PartitionKey]
  20. public string Subject { get; set; }
  21. public string ItemNO { get; set; }
  22. public string SchoolName { get; set; }
  23. }
  24. }