ref: v3变更,,网元关联核心网

This commit is contained in:
TsMask
2025-09-16 19:41:23 +08:00
parent 2f839f7178
commit 847517fdfe
18 changed files with 3986 additions and 16 deletions

View File

@@ -114,3 +114,16 @@ export function updateNeLicense(data: Record<string, any>) {
timeout: 180_000,
});
}
/**
* 网元核心关联
* @param data 网元对象 {"neUid": "", "coreUid": ""}
* @returns object
*/
export function changeNeCore(data: Record<string, any>) {
return request({
url: `/ne/info/core`,
method: 'PUT',
data: data,
});
}