| 1234567891011121314151617181920 |
- <?php
- namespace pt\controllers;
- use bizHd\merchant\services\ShopService;
- use common\components\mapUtil;
- use common\components\util;
- use Yii;
- class ShopController extends BaseController
- {
- public function actionList()
- {
- $where = [];
- $list = ShopService::getShopList($where);
- util::success($list);
- }
- }
|