liu
2026-09-02 1fb5fc73e8df33b25337ab34f669ab03e0d9ce06
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;
 
}