mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 23:42:48 +08:00
25 lines
526 B
PHP
25 lines
526 B
PHP
<?php
|
|
|
|
namespace base\admin\controller\system;
|
|
|
|
use app\admin\service\annotation\ControllerAnnotation;
|
|
use app\common\controller\AdminController;
|
|
use think\App;
|
|
|
|
/**
|
|
* @ControllerAnnotation(title="system_host")
|
|
*/
|
|
class HostBase extends AdminController
|
|
{
|
|
use \app\admin\traits\Curd;
|
|
|
|
public function __construct(App $app)
|
|
{
|
|
parent::__construct($app);
|
|
|
|
$this->model = new \app\admin\model\SystemHost();
|
|
|
|
$this->assign('select_list_status', $this->model::SELECT_LIST_STATUS, true);
|
|
}
|
|
}
|