24 lines
618 B
PHP
24 lines
618 B
PHP
<?php
|
||
// +------------------------------------------------+
|
||
// |http://www.cjango.com |
|
||
// +------------------------------------------------+
|
||
// | 修复BUG不是一朝一夕的事情,等我喝醉了再说吧! |
|
||
// +------------------------------------------------+
|
||
// | Author: 小陈叔叔 <Jason.Chen> |
|
||
// +------------------------------------------------+
|
||
namespace app\mobile\controller;
|
||
|
||
class Finance extends Center
|
||
{
|
||
|
||
public function vip()
|
||
{
|
||
return $this->fetch();
|
||
}
|
||
|
||
public function agent()
|
||
{
|
||
return $this->fetch();
|
||
}
|
||
}
|