MerchantCapitalController.php 411 B

123456789101112131415161718192021
  1. <?php
  2. namespace shop\controllers;
  3. use biz\merchant\services\MerchantCapitalService;
  4. use Yii;
  5. use common\components\util;
  6. class MerchantCapitalController extends BaseController
  7. {
  8. //列表 shish 2020.1.8
  9. public function actionList()
  10. {
  11. $get = Yii::$app->request->get();
  12. $where = ['merchantId' => $this->merchantId];
  13. $list = MerchantCapitalService::getCapitalList($where);
  14. util::success($list);
  15. }
  16. }