CashController.php 519 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace hd\controllers;
  3. use biz\sj\classes\CashClass;
  4. use common\components\dict;
  5. use common\components\util;
  6. use Yii;
  7. class CashController extends BaseController
  8. {
  9. //客户列表 ssh 2019.11.30
  10. public function actionList()
  11. {
  12. $where = ['mainId' => $this->mainId];
  13. $list = CashClass::getCashList($where);
  14. util::success($list);
  15. }
  16. //申请提现 ssh 2021.3.14
  17. public function actionApply()
  18. {
  19. util::fail('自动提现,无需人为操作');
  20. }
  21. }