/** * @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/event/{id}', params, }); } export function mock( params: Params, ): Promise> { return defHttp.get({ url: '/mock/web/event/{id}', params, }); }