| 123456789101112131415161718192021222324 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- namespace app\modules\admin\controllers\agent\front_erp;
- use app\modules\admin\behaviors\AgentFrontErpAuth;
- use app\modules\admin\controllers\BaseController as YBaseController;
- use yii\helpers\ArrayHelper;
- class BaseController extends YBaseController
- {
- public $front_agent_admin_id;
- public function behaviors()
- {
- return ArrayHelper::merge(parent::behaviors(), [
- [
- 'class' => AgentFrontErpAuth::class
- ]
- ]);
- }
- }
|