add: 网元列表

This commit is contained in:
TsMask
2023-09-06 19:36:39 +08:00
parent 7207e0812e
commit 51aa994a9e
7 changed files with 820 additions and 0 deletions

7
src/typings/request.d.ts vendored Normal file
View File

@@ -0,0 +1,7 @@
/**数据列表 */
type DataList = {
code: number;
msg: string;
total: number;
rows: Record<string, any>;
};