Text.php 245 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * 文本内容
  4. * @author auto create
  5. */
  6. class Text
  7. {
  8. /**
  9. * 文本内容
  10. **/
  11. public $content;
  12. /**
  13. * 业务处理ID
  14. **/
  15. public $id;
  16. /**
  17. * 文本类型1-评论 2-订单留言 9-其他
  18. **/
  19. public $type;
  20. }
  21. ?>