Index.php 482 字节
<?php

namespace app\run\controller;

use app\common\controller\Frontend;
use think\Db;
class Index extends Frontend
{

    protected $noNeedLogin = '*';
    protected $noNeedRight = '*';
    protected $layout = '';
    
    public function _initialize()
    {
        parent::_initialize();

        //$this->hardware = new \app\admin\model\reservoir\hkws\Hardware();
    }
    
    public function index()
    {
        // return $this->view()->fetch();
    }
    
    
       
}