/** * @desc 查看报警消息详情 */ import * as defs from '../../baseClass'; import { defHttp } from 'hailuo-http'; export interface Params { /** id */ id: number; } export function request( params: Params, ): Promise> { return defHttp.get({ url: '/web/alert/message/getAlertMessage', params, }); } export function mock( params: Params, ): Promise> { return defHttp.get({ url: '/mock/web/alert/message/getAlertMessage', params, }); }