Posts.php 403 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?php
  2. /**
  3. * 1
  4. * @author auto create
  5. */
  6. class Posts
  7. {
  8. /**
  9. * 1
  10. **/
  11. public $author;
  12. /**
  13. * 1
  14. **/
  15. public $biz_id;
  16. /**
  17. * 1
  18. **/
  19. public $comments;
  20. /**
  21. * 1
  22. **/
  23. public $content;
  24. /**
  25. * 1
  26. **/
  27. public $create_at;
  28. /**
  29. * 1
  30. **/
  31. public $feed_type;
  32. /**
  33. * 1
  34. **/
  35. public $post_id;
  36. /**
  37. * 1
  38. **/
  39. public $status;
  40. /**
  41. * 1
  42. **/
  43. public $tags;
  44. }
  45. ?>