ReportCommentVo.php 238 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * 日志评论详情
  4. * @author auto create
  5. */
  6. class ReportCommentVo
  7. {
  8. /**
  9. * 评论内容
  10. **/
  11. public $content;
  12. /**
  13. * 评论时间
  14. **/
  15. public $create_time;
  16. /**
  17. * 评论人id
  18. **/
  19. public $userid;
  20. }
  21. ?>