| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- /**
- * 账户模块
- * @author wesmiler
- */
- namespace app\weixin\controller;
- class AccountController extends BaseController
- {
- /**
- * 充值明细
- * @return mixed
- */
- public function index(){
- return $this->fetch();
- }
- /**
- * 账户充值
- * @return mixed
- */
- public function recharge(){
- return $this->fetch();
- }
- /**
- * 提现
- * @return mixed
- */
- public function withdraw(){
- return $this->fetch();
- }
- /**
- * 提现明细
- * @return mixed
- */
- public function withdrawLog(){
- return $this->fetch();
- }
- }
- ?>
|