SalesmanStoreController.php 791 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * 重庆赤晓店信息科技有限公司
  4. * https://www.chixiaodian.com
  5. * Copyright (c) 2023 赤店商城 All rights reserved.
  6. */
  7. namespace app\modules\alliance\controllers\store;
  8. use app\modules\alliance\behaviors\SalesmanStoreUserAdmin;
  9. use app\modules\alliance\behaviors\StoreAdmin;
  10. use yii\helpers\ArrayHelper;
  11. class SalesmanStoreController extends \app\modules\alliance\controllers\BaseController
  12. {
  13. public $store_id;
  14. public $s_id;
  15. public $is_food;
  16. public $mini_id;
  17. public $ali_mini_id;
  18. /**
  19. * @return array
  20. */
  21. public function behaviors()
  22. {
  23. return ArrayHelper::merge(parent::behaviors(), [
  24. [
  25. 'class' => SalesmanStoreUserAdmin::class
  26. ]
  27. ]);
  28. }
  29. }