12345678910111213141516171819 |
- <?php
- namespace App\Modules\OfficialAccount\Services;
- use App\Modules\OfficialAccount\Models\OfficialAccountMsg;
- class OfficialAccountMsgService
- {
- //创建消息
- static function getEventMsg($params)
- {
- $appid = $params['appid'];
- $apply_event_key = $params['apply_event_key'];
- $apply_event = $params['apply_event'];
- return OfficialAccountMsg::getEventMsg($params);
- }
- }
|