UserPastController.php 466 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * 客户历史资产 ssh 2021.2.24
  4. */
  5. namespace pt\controllers;
  6. use biz\user\classes\UserPastClass;
  7. use common\components\util;
  8. use common\components\wxUtil;
  9. use Yii;
  10. class UserPastController extends BaseController
  11. {
  12. //获取列表 ssh 2021.2.24
  13. public function actionList()
  14. {
  15. $get = Yii::$app->request->get();
  16. $sjId = $get['sjId'] ?? 0;
  17. $where = ['sjId' => $sjId];
  18. $list = UserPastClass::getUserList($where);
  19. util::success($list);
  20. }
  21. }