liriming
3 天以前 1220f5ca98b10b735a47c37a81fbfc554b01e2fe
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
import request from '@/config/axios'
 
export interface MmPredictAlarmMessageVO {
  id: string
  configId: string,
  title: string,
  content: string,
  alarmObj: string,
  pointId: string,
  itemId: string,
  outId: string,
  currentValue: number,
  outTime: Date,
  outValue: number,
  alarmType: string,
  alarmTime: Date,
  createTime: Date,
}
 
export interface MmPredictAlarmMessagePageReqVO extends PageParam {
  title?: string
}
 
// 查询MmPredictAlarmMessage列表
export const getMmPredictAlarmMessagePage = (params: MmPredictAlarmMessagePageReqVO) => {
  return request.get({ url: '/model/pre/alarm-message/page', params })
}