Bloblog.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.SDK.Models
  5. {
  6. /// <summary>
  7. /// 内容上传记录
  8. /// </summary>
  9. public class Bloblog :CosmosEntity
  10. {
  11. public string name { get; set; }
  12. public string url { get; set; }
  13. public long time { get; set; }
  14. public long size { get; set; }
  15. public List<string> periodId { get; set; } = new List<string>() { "" };
  16. public List<string> subjectId { get; set; } = new List<string>() { "" };
  17. public List<string> gradeId { get; set; } = new List<string>() { "" };
  18. /// <summary>
  19. /// audio 音频,video 视频 ,doc文档,image图片,other 其他,res教材,thum缩略图,avatar 头像
  20. /// </summary>
  21. public string type { get; set; }
  22. }
  23. public class BlobInfo : CosmosEntity
  24. {
  25. public string name { get; set; }
  26. public string url { get; set; }
  27. public string md5 { get; set; }
  28. public long time { get; set; }
  29. public long size { get; set; }
  30. public List<string> periodId { get; set; } = new List<string>() { "" };
  31. public List<string> subjectId { get; set; } = new List<string>() { "" };
  32. public List<string> gradeId { get; set; } = new List<string>() { "" };
  33. /// <summary>
  34. /// audio 音频,video 视频 ,doc文档,image图片,other 其他,res教材,thum缩略图,avatar 头像
  35. /// </summary>
  36. public string type { get; set; }
  37. }
  38. }