更新文件

This commit is contained in:
2019-07-06 21:22:20 +08:00
parent 1b2fc10502
commit 3d9aa3e742
5 changed files with 51 additions and 12 deletions

View File

@@ -16,12 +16,18 @@ class Database extends Admin{
* @title 数据备份
*/
public function export(){
$this->data['data'] = array(
'list' => array()
);
return $this->data;
}
/**
* @title 数据导入
*/
public function import(){
$this->data['data'] = array(
'list' => array()
);
return $this->data;
}
}