1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package cn.iocoder.yudao.module.system.service.database;
|
| import jakarta.servlet.http.HttpServletResponse;
|
| public interface DatabaseBackupService {
|
| /**
| * 备份数据库,并将 SQL 文件写入到 HTTP 响应中
| *
| * @param response HTTP 响应
| */
| void backupDatabase(HttpServletResponse response) throws Exception;
|
| }
|
|