ArtRecord.cs 731 B

12345678910111213141516171819202122232425
  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. public List<Attachment> attachments { get; set; } = new List<Attachment>();
  23. }
  24. }