AttachmentVO.php 708 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?php
  2. /**
  3. * 附件内容
  4. * @author auto create
  5. */
  6. class AttachmentVO
  7. {
  8. /**
  9. * 文件后缀, 用于展示文件对应图标
  10. **/
  11. public $detail_type;
  12. /**
  13. * 上传DING盘后的文件ID
  14. **/
  15. public $file_id;
  16. /**
  17. * 文件名
  18. **/
  19. public $file_name;
  20. /**
  21. * 文件大小(单位:Byte, 最大2G)
  22. **/
  23. public $file_size;
  24. /**
  25. * 上传DING盘后的SpaceId
  26. **/
  27. public $file_space_id;
  28. /**
  29. * 链接缩略图
  30. **/
  31. public $link_pic_url;
  32. /**
  33. * 链接摘要
  34. **/
  35. public $link_text;
  36. /**
  37. * 链接标题
  38. **/
  39. public $link_title;
  40. /**
  41. * 链接URL
  42. **/
  43. public $link_url;
  44. /**
  45. * 附件类型:img-图片,link-链接,file-文件
  46. **/
  47. public $type;
  48. }
  49. ?>