feat:故障记录导出

dev.breakdown
袁子龙 2024-09-25 22:04:21 +08:00
parent 8acb0c68f9
commit 3b58d1e5d0
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,"车辆故障记录数据");
}