/** * @desc 采集点选框 */ import * as defs from '../../baseClass'; import { defHttp } from 'hailuo-http'; export interface Params { /** code */ code: string; } export function request( params: Params, ): Promise>> { return defHttp.get({ url: '/web/monitoring/getCollectionPoint', params, }); } export function mock( params: Params, ): Promise>> { return defHttp.get({ url: '/mock/web/monitoring/getCollectionPoint', params, }); }