import { defHttp } from '@jdlinker/func';

export const queryCount = (type: string, data: any) => defHttp.post({ url: `/data-collect/${type}/_count`, data });

export const dashboard = (data: any) => defHttp.post({ url: `/dashboard/_multi`, data });
