1234567891011121314151617181920212223 |
- <?php
- namespace M\Controller;
- use Common\Controller\MBaseController as Base;
- /**
- * 首页
- * @author: linch
- * Class IndexController
- * @package M\Controller
- */
- class IndexController extends Base
- {
- /**
- * 首页
- * @author: linch
- */
- public function index(){
- $this->display();
- }
- }
|