ExamAnswer.cs 640 B

1234567891011121314151617181920212223242526
  1. using Newtonsoft.Json;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.Text;
  6. using TEAMModelOS.SDK.Context.Attributes.Azure;
  7. namespace TEAMModelOS.SDK.Models
  8. {
  9. /// <summary>
  10. /// 考生作答信息
  11. /// </summary>
  12. [CosmosDB(Database = "TEAMModelOS", Name = "School")]
  13. public class ExamAnswer :CosmosEntity
  14. {
  15. // [PartitionKey(name = "ExamAnswer")]
  16. public ExamAnswer()
  17. {
  18. pk = "ExamAnswer";
  19. answer = new List<List<string>>();
  20. }
  21. public List<List<string>> answer { get; set; }
  22. }
  23. }