feat:故障记录导出

master
袁子龙 2024-09-25 22:04:21 +08:00 committed by Liu Wu
parent 46bbf326c4
commit bf6cbc41a2
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ public class sysCarFaultLogController extends BaseController {
@PostMapping("/export")
public void export(HttpServletResponse response, SysCarFaultLog sysCarFaultLog){
List<SysCarFaultLog> list = service.listStatusSolve(sysCarFaultLog);
List<SysCarFaultLog> list = service.selectSysCarFaultLogList(sysCarFaultLog);
ExcelUtil<SysCarFaultLog> util = new ExcelUtil<SysCarFaultLog>(SysCarFaultLog.class);
util.exportExcel(response,list,"车辆故障记录数据");
}