提交 442b60a3 authored 作者: Matrix's avatar Matrix

[决算模块] 修复findAll接口

上级 5742097a
...@@ -83,7 +83,7 @@ public class FinalCheckController { ...@@ -83,7 +83,7 @@ public class FinalCheckController {
@GetMapping("/reports") @GetMapping("/reports")
@ApiOperation(value = "查询所有决算报告(不附带详情数据)") @ApiOperation(value = "查询所有决算报告(不附带详情数据)")
public ResponseEntity<ResultObj<Page<FinalReportVo>>> findAllReports( public ResponseEntity<ResultObj<Page<FinalReportVo>>> findAllReports(
@RequestParam String keyword, @RequestParam(required = false, defaultValue = "xw") String keyword,
@RequestParam(required = false, defaultValue = "1") int page, @RequestParam(required = false, defaultValue = "1") int page,
@RequestParam(required = false, defaultValue = "10") int size) { @RequestParam(required = false, defaultValue = "10") int size) {
return ResultUtil.success(fcService.findAllWithoutDetail(keyword, --page, size)); return ResultUtil.success(fcService.findAllWithoutDetail(keyword, --page, size));
...@@ -162,7 +162,6 @@ public class FinalCheckController { ...@@ -162,7 +162,6 @@ public class FinalCheckController {
map.put("list", listMap); map.put("list", listMap);
params.setTemplateUrl("excelTemplate/finalCheck.xlsx"); params.setTemplateUrl("excelTemplate/finalCheck.xlsx");
Workbook book = ExcelExportUtil.exportExcel(params, map); Workbook book = ExcelExportUtil.exportExcel(params, map);
// //
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论