OfficialAccountMsgService.php 419 B

12345678910111213141516171819
  1. <?php
  2. namespace App\Modules\OfficialAccount\Services;
  3. use App\Modules\OfficialAccount\Models\OfficialAccountMsg;
  4. class OfficialAccountMsgService
  5. {
  6. //创建消息
  7. static function getEventMsg($params)
  8. {
  9. $appid = $params['appid'];
  10. $apply_event_key = $params['apply_event_key'];
  11. $apply_event = $params['apply_event'];
  12. return OfficialAccountMsg::getEventMsg($params);
  13. }
  14. }