1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| package org.dromara.demo.service;
|
| import jakarta.servlet.http.HttpServletResponse;
|
| import java.io.IOException;
|
| /**
| * 导出下拉框Excel示例
| *
| * @author Emil.Zhang
| */
| public interface IExportExcelService {
|
| /**
| * 导出下拉框
| *
| * @param response /
| */
| void exportWithOptions(HttpServletResponse response);
|
| /**
| * 自定义导出
| *
| * @param response /
| */
| void customExport(HttpServletResponse response) throws IOException;
| }
|
|