forked from liweijie/education
教学大纲下载功能
This commit is contained in:
+6
-2
@@ -103,9 +103,13 @@ public class ZYJXJHBController {
|
||||
|
||||
/**
|
||||
* 导出专业教学计划到 Excel(.xlsx)。
|
||||
* <p>专业代号、停用标识可选,与列表筛选条件一致。</p>
|
||||
*/
|
||||
@GetMapping("/export")
|
||||
public void exportData(HttpServletResponse response) throws Exception {
|
||||
zyjxjhbService.exportZYJXJHBExcel(response);
|
||||
public void exportData(
|
||||
HttpServletResponse response,
|
||||
@RequestParam(required = false) String zydh,
|
||||
@RequestParam(required = false) Integer ty) throws Exception {
|
||||
zyjxjhbService.exportZYJXJHBExcel(response, zydh, ty);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user