Msg.php 315 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * 消息体,具体见文档
  4. * @author auto create
  5. */
  6. class Msg
  7. {
  8. /**
  9. * 卡片消息
  10. **/
  11. public $action_card;
  12. /**
  13. * markdown消息
  14. **/
  15. public $markdown;
  16. /**
  17. * 消息类型
  18. **/
  19. public $msgtype;
  20. /**
  21. * 文本消息
  22. **/
  23. public $text;
  24. }
  25. ?>