Finish cpu statistics information api

This commit is contained in:
2023-12-08 15:08:42 +08:00
parent 86c2bcf97b
commit 971a7007c7
2 changed files with 6 additions and 3 deletions

View File

@@ -12,5 +12,6 @@ data class CpuInfoVo(
val irq: Long,
val softirq: Long,
val steal: Long,
val total: Long,
val processors: MutableList<CpuInfoVo>? = null
)