AccountDetails.php 522 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: asus
  5. * Date: 2017/6/23
  6. * Time: 9:55
  7. */
  8. namespace App\Home\Controller;
  9. class AccountDetails extends BaseController {
  10. function init(){
  11. }
  12. Public function Index(){
  13. $this->display();
  14. }
  15. Public function Recharge(){
  16. $this->display();
  17. }
  18. Public function Withdrawals(){
  19. $this->display();
  20. }
  21. Public function ReturnMoneys(){
  22. $this->display();
  23. }
  24. Public function BettingRecord(){
  25. $this->display();
  26. }
  27. }