This commit is contained in:
lai
2024-06-06 22:28:46 +08:00
parent 8fcd7974e4
commit 8f8d056f45

14
src/api/neData/smf.ts Normal file
View File

@@ -0,0 +1,14 @@
import { request } from '@/plugins/http-fetch';
/**
* 查询SMF-CDR会话事件
* @param query 查询参数
* @returns object
*/
export function listIMSDataCDR(query: Record<string, any>) {
return request({
url: '/neData/smf/cdr/list',
method: 'get',
params: query,
});
}