| 123456789101112131415161718192021 |
- <?php
- namespace hd\controllers;
- use biz\sj\services\SjCapitalService;
- use Yii;
- use common\components\util;
- class SjCapitalController extends BaseController
- {
- //列表 shish 2020.1.8
- public function actionList()
- {
- $get = Yii::$app->request->get();
- $where = ['merchantId' => $this->sjId];
- $list = SjCapitalService::getCapitalList($where);
- util::success($list);
- }
- }
|