App.php
470 字节
<?php
namespace app\notify\controller;
use app\common\controller\Frontend;
use think\Db;
class App extends Frontend
{
protected $noNeedLogin = [];
protected $noNeedRight = '*';
protected $layout = '';
public function _initialize()
{
parent::_initialize();
$this->hardware = new \app\admin\model\reservoir\hkws\Hardware();
}
public function seting()
{
return $this->view->fetch();
}
}