ShopController.php 339 B

1234567891011121314151617181920
  1. <?php
  2. namespace pt\controllers;
  3. use bizHd\merchant\services\ShopService;
  4. use common\components\mapUtil;
  5. use common\components\util;
  6. use Yii;
  7. class ShopController extends BaseController
  8. {
  9. public function actionList()
  10. {
  11. $where = [];
  12. $list = ShopService::getShopList($where);
  13. util::success($list);
  14. }
  15. }