教学大纲,导出选中数据,有勾选导出勾选条目,无勾选导出所有

This commit is contained in:
2026-09-21 17:48:38 +08:00
parent 450d664c33
commit 12eddac276
4 changed files with 30 additions and 14 deletions
@@ -119,7 +119,8 @@ public class ZYJXJHBController {
public void exportData(
HttpServletResponse response,
@RequestParam(required = false) String zydh,
@RequestParam(required = false) Integer ty) throws Exception {
zyjxjhbService.exportZYJXJHBExcel(response, zydh, ty);
@RequestParam(required = false) Integer ty,
@RequestParam(required = false) List<String> bhList) throws Exception {
zyjxjhbService.exportZYJXJHBExcel(response, zydh, ty, bhList);
}
}