[3.3.0][Feat]新增状态监控汇总功能

This commit is contained in:
chenfufeng
2023-06-13 22:37:54 +08:00
parent 9f2c713767
commit 204ce4c2ea
29 changed files with 843 additions and 15 deletions

View File

@@ -0,0 +1,10 @@
package com.mogo.eagle.core.data.status
/**
* 状态汇总
*/
data class StatusSummaryEntity(
var type: Int,
var desc: String = "",
var isException: Boolean = false
)