ArtRecord.cs 687 B

123456789101112131415161718192021222324
  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 quotaId { get; set; }
  16. public string acId { get; set; }
  17. public string subject { get; set; }
  18. public string stuId { get; set; }
  19. public string school { get; set; }
  20. public long createTime { get; set; }
  21. public List<Attachment> attachments { get; set; } = new List<Attachment>();
  22. }
  23. }