mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 15:32:48 +08:00
24 lines
499 B
PHP
24 lines
499 B
PHP
<?php
|
|
|
|
namespace base\admin\controller\system;
|
|
|
|
use app\admin\model\SystemUploadfile;
|
|
use app\admin\service\annotation\ControllerAnnotation;
|
|
use app\common\controller\AdminController;
|
|
use think\App;
|
|
|
|
/**
|
|
* @ControllerAnnotation(title="上传文件管理")
|
|
* Class Uploadfile
|
|
*/
|
|
class UploadfileBase extends AdminController
|
|
{
|
|
use \app\admin\traits\Curd;
|
|
|
|
public function __construct(App $app)
|
|
{
|
|
parent::__construct($app);
|
|
$this->model = new SystemUploadfile();
|
|
}
|
|
}
|