Answer.cs 873 B

12345678910111213141516171819202122232425262728
  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 Answer
  10. {
  11. [JsonProperty(PropertyName = "id")]
  12. public string Id { get; set; }
  13. public string Number { get; set; }
  14. [PartitionKey]
  15. public string ExNO { get; set; }
  16. public string StudentId { get; set; }
  17. public string Index { get; set; }
  18. public float Point { get; set; }
  19. public string Detail { get; set; }
  20. public string CourseCode { get; set; }
  21. public string ClassCode { get; set; }
  22. public string GradeCode { get; set; }
  23. public string SchoolCode { get; set; }
  24. public string ExamName { get; set; }
  25. }
  26. }