ArtRecord.cs 850 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace TEAMModelOS.SDK.Models.Cosmos.Common
  7. {
  8. public class ArtRecord : CosmosEntity
  9. {
  10. public ArtRecord()
  11. {
  12. pk = "ArtRecord";
  13. }
  14. public string artId { get; set; }
  15. public string classId { get; set; }
  16. public string quotaId { get; set; }
  17. public string acId { get; set; }
  18. public string subject { get; set; }
  19. public string stuId { get; set; }
  20. public string school { get; set; }
  21. public long createTime { get; set; }
  22. //0未作答 1已作答
  23. public int isAnswer { get; set; } = 0;
  24. public string url { get; set; }
  25. public List<Attachment> attachments { get; set; } = new List<Attachment>();
  26. }
  27. }