Index.php 320 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: 中闽 < 1464674022@qq.com >
  5. * Date: 2020/2/4
  6. * Time: 12:47
  7. */
  8. namespace app\index\controller;
  9. use app\index\controller\base\Base;
  10. class Index extends Base
  11. {
  12. public function index()
  13. {
  14. return "本页面为 " . PRODUCT_NAME . " 系统默认页。";
  15. }
  16. }