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