ArtRecord.cs 601 B

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