| 123456789101112131415161718192021222324252627282930 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- namespace app\modules\alliance\controllers\store;
- use app\modules\alliance\behaviors\SalesmanStoreUserAdmin;
- use app\modules\alliance\behaviors\StoreAdmin;
- use yii\helpers\ArrayHelper;
- class SalesmanStoreController extends \app\modules\alliance\controllers\BaseController
- {
- public $store_id;
- public $s_id;
- public $is_food;
- public $mini_id;
- public $ali_mini_id;
- /**
- * @return array
- */
- public function behaviors()
- {
- return ArrayHelper::merge(parent::behaviors(), [
- [
- 'class' => SalesmanStoreUserAdmin::class
- ]
- ]);
- }
- }
|