| 123456789101112131415161718192021222324252627 |
- <?php
- namespace hd\controllers;
- use biz\sj\classes\CashClass;
- use common\components\dict;
- use common\components\util;
- use Yii;
- class CashController extends BaseController
- {
- //客户列表 ssh 2019.11.30
- public function actionList()
- {
- $where = ['mainId' => $this->mainId];
- $list = CashClass::getCashList($where);
- util::success($list);
- }
- //申请提现 ssh 2021.3.14
- public function actionApply()
- {
- util::fail('自动提现,无需人为操作');
- }
- }
|