| 1234567891011121314151617181920 |
- <?php
- namespace saas\controllers;
- use biz\merchant\services\MerchantService;
- use common\components\util;
- use Yii;
- class MerchantController extends BaseController
- {
- //商家列表 shish 2019.12.20
- public function actionList()
- {
- $where = [];
- $list = MerchantService::getSaasMerchant($where);
- util::success($list);
- }
- }
|