MerchantController.php 330 B

1234567891011121314151617181920
  1. <?php
  2. namespace saas\controllers;
  3. use biz\merchant\services\MerchantService;
  4. use common\components\util;
  5. use Yii;
  6. class MerchantController extends BaseController
  7. {
  8. //商家列表 shish 2019.12.20
  9. public function actionList()
  10. {
  11. $where = [];
  12. $list = MerchantService::getSaasMerchant($where);
  13. util::success($list);
  14. }
  15. }