27 lines
357 B
PHP
27 lines
357 B
PHP
<?php
|
|
|
|
namespace app\admin\controller;
|
|
|
|
use app\common\controller\Backend;
|
|
|
|
use think\Controller;
|
|
use think\Request;
|
|
|
|
/**
|
|
* 版本管理
|
|
*
|
|
* @icon fa fa-circle-o
|
|
*/
|
|
class Version extends Backend
|
|
{
|
|
|
|
protected $model = null;
|
|
|
|
public function _initialize()
|
|
{
|
|
parent::_initialize();
|
|
$this->model = model('Version');
|
|
}
|
|
|
|
}
|