SjCapitalController.php 373 B

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