ustcyc
2025-01-08 e58b27d9b5b6b3d63267ca89d28ebe9d3363f94b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import request from '@/utils/request'
export function historicalAlarm(query) {
    return request({
        url: '/energyAlarm/historicalAlarm/list',
        method: 'get',
        params: query
    })
}
 
export function getByNodeId(query) {
    return request({
        url: '/alarmAnalysis/getByNodeId',
        method: 'get',
        params: query
    })
}
 
export function getCountInfo(query) {
    return request({
        url: '/alarmAnalysis/getCountInfo',
        method: 'get',
        params: query
    })
}