| 12345678910111213141516171819202122232425262728293031 |
- <?php
- namespace addons\StarChain\api\modules\v1\controllers;
- use addons\StarChain\common\services\MessageHandlerService;
- use common\traits\BaseControllerTrait;
- /**
- * 通知
- * @package addons\StarChain\api\modules\v1\controllers
- */
- class NoticeController extends \yii\rest\ActiveController
- {
- use BaseControllerTrait;
- public $modelClass = '';
- /**
- * 响应
- *
- * @return string
- */
- public function actionHandler(int $mall_id)
- {
- $service = new MessageHandlerService(['mall_id' => $mall_id]);
- $service->getMessage();
- return $this->success('ok');
- }
- }
|