chore: apis

This commit is contained in:
yangsy
2025-08-22 11:19:51 +08:00
parent 80a30a3cba
commit 29ff837da8
9 changed files with 9 additions and 7 deletions

View File

@@ -0,0 +1,21 @@
export interface NdmSecurityBoxDiagInfo {
[key: string]: any;
info: [
{
addrCode: number;
circuits: {
current: number;
status: number;
voltage: number;
}[];
fanSpeeds: number[];
humidity: number;
switches: number[];
temperature: number;
},
];
stCommonInfo: {
内存使用率: string;
CPU使用率: string;
};
}