ExamAnswer.cs 586 B

12345678910111213141516171819202122232425
  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. public class ExamAnswer :CosmosEntity
  13. {
  14. // [PartitionKey(name = "ExamAnswer")]
  15. public ExamAnswer()
  16. {
  17. pk = "ExamAnswer";
  18. answer = new List<List<string>>();
  19. }
  20. public List<List<string>> answer { get; set; }
  21. }
  22. }