chore: reorder import
This commit is contained in:
8
src/apis/requests/device/log/ndm-icmp-log.ts
Normal file
8
src/apis/requests/device/log/ndm-icmp-log.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
import { ndmClient } from '@/apis/client';
|
||||
import type { PageParams, NdmIcmpLogPageQuery, PageResult, NdmIcmpLogResultVO } from '@/apis/models';
|
||||
|
||||
export const postIcmpLogPage = async (stationCode: string, pageQuery: PageParams<NdmIcmpLogPageQuery>) => {
|
||||
const prefix = stationCode ? `/${stationCode}` : '';
|
||||
const resp = await ndmClient.post<PageResult<NdmIcmpLogResultVO>>(`${prefix}/api/ndm/ndmIcmpLog/page`, pageQuery);
|
||||
return resp;
|
||||
};
|
||||
Reference in New Issue
Block a user