Files
sentcms/app/controller/admin/Database.php
2019-07-01 16:13:59 +08:00

27 lines
704 B
PHP

<?php
// +----------------------------------------------------------------------
// | SentCMS [ WE CAN DO IT JUST THINK IT ]
// +----------------------------------------------------------------------
// | Copyright (c) 2013 http://www.tensent.cn All rights reserved.
// +----------------------------------------------------------------------
// | Author: molong <molong@tensent.cn> <http://www.tensent.cn>
// +----------------------------------------------------------------------
namespace app\controller\admin;
use app\controller\Admin;
class Database extends Admin{
/**
* @title 数据备份
*/
public function export(){
}
/**
* @title 数据导入
*/
public function import(){
}
}