liulingling.177216
2024-08-26 349f1cfc5fa77fbc636d542df0d8050fddec48c2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.dingzhuo.energy.data.monitoring.historical.controller;
 
 
import com.dingzhuo.energy.data.model.service.IModelNodeService;
import com.dingzhuo.energy.data.monitoring.historical.service.IHistoryDataService;
import com.dingzhuo.energy.framework.web.controller.BaseController;
import io.swagger.annotations.Api;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
 
/**
 * 历史数据统计  控制层
 *
 * @Author: Zhujw
 * @Date: 2023/3/6
 */
@Api(value = "报警检测—历史报警检测", tags = {"报警检测"})
@RestController
@RequestMapping("/historical")
public class HistoryDataController extends BaseController {
 
    @Autowired
    private IHistoryDataService dataService;
 
    @Autowired
    private IModelNodeService modelNodeService;
 
 
}