wujingjing
2025-04-02 5fb58c10b2bb44b3f2d3bdab4d7a6619271e2bbf
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import request from '/@/utils/request';
 
/**
 * @summary  获取设备最近状态列表
 */
export const GetStationPreviewEquipmentLastStatusList = async (params, req: any = request) => {
    return req({
        url: '/Phm/Station/Preview/GetEquipmentLastStatusList@V1.0',
        method: 'GET',
        params,
    });
};
 
/**
 * @summary  获取设备时间区间内得评价记录列表
 */
export const GetStationPreviewEquipmentEvaluateRecordList = async (params, req: any = request) => {
    return req({
        url: '/Phm/Station/Preview/GetEquipmentEvaluateRecordList@V1.0',
        method: 'GET',
        params,
    });
};
 
/**
 * @summary  获取时间区间内未验证预警数量列表
 */
export const GetStationPreviewTrendNotYetAlarmCountList = async (params, req: any = request) => {
    return req({
        url: '/Phm/Station/Preview/GetTrendNotYetAlarmCountList@V1.0',
        method: 'GET',
        params,
    });
};
 
/**
 * @summary  获取时间区间内趋势未验证预警分页列表
 */
export const GetStationPreviewTrendNotYetAlarmPageList = async (params, req: any = request) => {
    return req({
        url: '/Phm/Station/Preview/GetTrendNotYetAlarmPageList@V1.0',
        method: 'GET',
        params,
    });
};
 
/**
 * @summary  获取时间区间内设备报警数量列表
 */
export const GetStationPreviewFaultAlarmCountList = async (params, req: any = request) => {
    return req({
        url: '/Phm/Station/Preview/GetFaultAlarmCountList@V1.0',
        method: 'GET',
        params,
    });
};
 
/**
 * @summary  获取时间区间内故障诊断报告分页列表
 */
export const GetStationPreviewFaultReportPageList = async (params, req: any = request) => {
    return req({
        url: '/Phm/Station/Preview/GetFaultReportPageList@V1.0',
        method: 'GET',
        params,
    });
};