|
|
@@ -174,12 +174,27 @@ public class ReportController {
|
|
|
return reportFeign.getOperateDaily(mapValue, apiId, pageNum, pageSize);
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation("查询日报数据")
|
|
|
+ @PostMapping("getDailySyncReport")
|
|
|
+ Map<String, Object> getDailySyncReport(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
|
+ Integer apiId,
|
|
|
+ Integer pageNum,
|
|
|
+ Integer pageSize) {
|
|
|
+ return reportFeign.getDailySyncReport(mapValue, apiId, pageNum, pageSize);
|
|
|
+ }
|
|
|
+
|
|
|
@ApiOperation("匹配导入数据")
|
|
|
@PostMapping("matchImport")
|
|
|
Map<String, Object> matchImport(@RequestBody Map<String,Object> map) {
|
|
|
return reportFeign.matchImport(map);
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation("同步报表数据")
|
|
|
+ @PostMapping("syncReportOperate")
|
|
|
+ Map<String, Object> syncReportOperate(@RequestBody Map<String,Object> map) {
|
|
|
+ return reportFeign.syncReportOperate(map);
|
|
|
+ }
|
|
|
+
|
|
|
@ApiOperation("syncCountData")
|
|
|
@PostMapping("syncCountData")
|
|
|
Map<String, Object> syncCountData(@RequestBody Map<String,Object> map) {
|