Commit f1e8270b authored by chenzhao's avatar chenzhao

修改方法

parent 8851cdda
...@@ -859,11 +859,13 @@ public class ConfigureController extends AbstractBaseController { ...@@ -859,11 +859,13 @@ public class ConfigureController extends AbstractBaseController {
* 每天凌晨0点25分 对当前换流站历史数据进行处理 * 每天凌晨0点25分 对当前换流站历史数据进行处理
* */ * */
@Scheduled(cron = "${jobs.day.cron.old}") @Scheduled(cron = "${jobs.day.cron.old}")
@PersonIdentify
@TycloudOperation(ApiLevel = UserType.AGENCY) @TycloudOperation(ApiLevel = UserType.AGENCY)
@GetMapping(value = "/iotWeekReporOldData") @GetMapping(value = "/iotWeekReporOldData")
@ApiOperation(httpMethod = "GET", value = "物联报表 历史数据处理", notes = "物联报表 历史数据处理") @ApiOperation(httpMethod = "GET", value = "物联报表 历史数据处理", notes = "物联报表 历史数据处理")
public ResponseModel iotWeekReportData(Page page) { public ResponseModel iotWeekReportData() {
Page page = new Page<>();
page.setSize(20L);
page.setCurrent(1L);
List<Integer> reportTypes = Arrays.asList(1, 2, 3); List<Integer> reportTypes = Arrays.asList(1, 2, 3);
reportTypes.forEach(reportType->{ reportTypes.forEach(reportType->{
AnalysisReportLogDto dto = new AnalysisReportLogDto(); AnalysisReportLogDto dto = new AnalysisReportLogDto();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment