Index.php 463 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2017 https://www.sapixx.com All rights reserved.
  4. * @license Licensed (http://www.apache.org/licenses/LICENSE-2.0).
  5. * @author pillar<ltmn@qq.com>
  6. * 管理首页
  7. */
  8. namespace app\citys\controller\Manage;
  9. use app\citys\controller\Common;
  10. class Index extends Common{
  11. /**
  12. * 应用管理首页
  13. * @access public
  14. */
  15. public function Index(){
  16. return redirect('citys/info/index');
  17. }
  18. }