SystemAccountSendMessageParam.php 371 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * 系统账号发送消息参数
  4. * @author auto create
  5. */
  6. class SystemAccountSendMessageParam
  7. {
  8. /**
  9. * 系统账号标识
  10. **/
  11. public $account_key;
  12. /**
  13. * 消息模版标识
  14. **/
  15. public $message_key;
  16. /**
  17. * 消息接收者userId列表
  18. **/
  19. public $receiver_user_id_list;
  20. /**
  21. * 消息模版填充值
  22. **/
  23. public $value_map;
  24. }
  25. ?>