chore: models & requests

This commit is contained in:
2025-08-12 15:19:18 +08:00
parent 33553c52b5
commit f06475e7ce
27 changed files with 326 additions and 12 deletions

View File

@@ -0,0 +1,9 @@
import type { PageParams, PageResult } from '@/apis/models/base/page';
import type { NdmSnmpLogPageQuery, NdmSnmpLogResultVO } from '@/apis/models/device';
import { ndmClient } from '@/apis/client';
export const postSnmpLogPage = async (stationCode: string, pageQuery: PageParams<NdmSnmpLogPageQuery>) => {
const resp = await ndmClient.post<PageResult<NdmSnmpLogResultVO>>(`${stationCode}/api/ndm/ndmSnmpLog/page`, pageQuery);
return resp;
};