12345678910111213141516171819202122 |
- <?php
- /**
- * Created by PhpStorm.
- * User: xiaofeng
- * Date: 2018/4/3
- * Time: 上午8:46
- */
- namespace backend\controllers;
- use backend\base\CommonController;
- use backend\base\Help;
- use Yii;
- class ReststelController extends CommonController
- {
- public function actionIndex()
- {
- return $this->render('index');
- }
-
- }
|