| 1234567891011121314151617181920212223242526 |
- <?php
- /**
- * 客户历史资产 ssh 2021.2.24
- */
- namespace pt\controllers;
- use biz\user\classes\UserPastClass;
- use common\components\util;
- use common\components\wxUtil;
- use Yii;
- class UserPastController extends BaseController
- {
- //获取列表 ssh 2021.2.24
- public function actionList()
- {
- $get = Yii::$app->request->get();
- $sjId = $get['sjId'] ?? 0;
- $where = ['sjId' => $sjId];
- $list = UserPastClass::getUserList($where);
- util::success($list);
- }
- }
|