ArticleCreateDTO.php 312 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /**
  3. * 文章对象
  4. * @author auto create
  5. */
  6. class ArticleCreateDTO
  7. {
  8. /**
  9. * 文章id
  10. **/
  11. public $article_id;
  12. /**
  13. * html码
  14. **/
  15. public $content;
  16. /**
  17. * 摘要
  18. **/
  19. public $digest;
  20. /**
  21. * 封面图
  22. **/
  23. public $thumb_media_id;
  24. /**
  25. * 标题
  26. **/
  27. public $title;
  28. }
  29. ?>