|
@@ -451,7 +451,7 @@ public class DailyImportSummaryController {
|
|
|
}
|
|
|
|
|
|
@ZfireList
|
|
|
- @PostMapping("/repiar/all/list")
|
|
|
+ @PostMapping("/repair/all/list")
|
|
|
@ApiOperation(value = "维修工单结算清单-列表")
|
|
|
public ResponseHelper<IPage<AllDailyImportSummaryItemVO>> repairAllList(
|
|
|
@RequestBody ZfireParamBean zfireParamBean
|
|
@@ -461,7 +461,7 @@ public class DailyImportSummaryController {
|
|
|
});
|
|
|
}
|
|
|
|
|
|
- @PostMapping("/repiar/all/list/export")
|
|
|
+ @PostMapping("/repair/all/list/export")
|
|
|
@ApiOperation("维修工单结算清单-导出")
|
|
|
public void repairAllListExport(
|
|
|
@RequestBody ZfireParamBean zfireParamBean,
|
|
@@ -473,4 +473,10 @@ public class DailyImportSummaryController {
|
|
|
//3.导出
|
|
|
FieldUtils.exportData(page.getRecords(), zfireParamBean.getExportFields(), request, response);
|
|
|
}
|
|
|
+
|
|
|
+ @PostMapping("/repair/all/count")
|
|
|
+ @ApiOperation("维修工单结算清单-统计")
|
|
|
+ public ResponseHelper<DailyCountBean> repairAllListExport() throws Exception {
|
|
|
+ return ResponseHelper.success(dailyImportSummaryLogic.repairAllCount());
|
|
|
+ }
|
|
|
}
|