MessageItem.php 181 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * 消息内容节点序列
  4. * @author auto create
  5. */
  6. class MessageItem
  7. {
  8. /**
  9. * 节点类型
  10. **/
  11. public $type;
  12. /**
  13. * 节点值
  14. **/
  15. public $value;
  16. }
  17. ?>