1234567891011121314151617181920212223242526 |
- <?php
- namespace app\admin\controller;
- use app\common\controller\Backend;
- use think\Controller;
- use think\Request;
- class Version extends Backend
- {
- protected $model = null;
- public function _initialize()
- {
- parent::_initialize();
- $this->model = model('Version');
- }
- }
|