1550076451 лет назад: 2
Родитель
Сommit
f16281993e

+ 3 - 3
zxkf-api/src/main/java/api/controller/Report/WorkReportController.java

@@ -47,7 +47,7 @@ public class WorkReportController extends BaseController {
47 47
     }
48 48
     @ApiOperation("在线客服工作报表导出Excel")
49 49
     @Log(title = "在线客服工作报表导出excel", businessType = BusinessType.EXPORT)
50
-    @GetMapping("/OnlineService/exportExcel")
50
+    @PostMapping("/OnlineService/exportExcel")
51 51
     public void OnlineServiceExcel(ScreenReport input) {
52 52
         var table= ReportBaseService.selectOnlineServiceReport( input);
53 53
 
@@ -78,7 +78,7 @@ public class WorkReportController extends BaseController {
78 78
     }
79 79
     @ApiOperation("工单分类报表导出Excel")
80 80
     @Log(title = "工单分类报表导出excel", businessType = BusinessType.EXPORT)
81
-    @GetMapping("/WorkOrderType/exportExcel")
81
+    @PostMapping("/WorkOrderType/exportExcel")
82 82
     public void WorkOrderTypeExportExcel(ScreenReport input) {
83 83
         var table= ReportBaseService.selectWorkOrderTypeReport( input);
84 84
         if (table != null && table.size() > 0) {
@@ -124,7 +124,7 @@ public class WorkReportController extends BaseController {
124 124
     }
125 125
     @ApiOperation("话务工作报表导出Excel")
126 126
     @Log(title = "话务工作报表导出Excel", businessType = BusinessType.EXPORT)
127
-    @GetMapping("/Record/exportExcel")
127
+    @PostMapping("/Record/exportExcel")
128 128
     public void RecordExportExcel(ScreenReport input) {
129 129
         var table = ReportBaseService.selectRecordReport(input);
130 130
         if (table != null && table.size() > 0) {