AccountController.php 641 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. /**
  3. * 账户模块
  4. * @author wesmiler
  5. */
  6. namespace app\weixin\controller;
  7. class AccountController extends BaseController
  8. {
  9. /**
  10. * 充值明细
  11. * @return mixed
  12. */
  13. public function index(){
  14. return $this->fetch();
  15. }
  16. /**
  17. * 账户充值
  18. * @return mixed
  19. */
  20. public function recharge(){
  21. return $this->fetch();
  22. }
  23. /**
  24. * 提现
  25. * @return mixed
  26. */
  27. public function withdraw(){
  28. return $this->fetch();
  29. }
  30. /**
  31. * 提现明细
  32. * @return mixed
  33. */
  34. public function withdrawLog(){
  35. return $this->fetch();
  36. }
  37. }
  38. ?>