mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-12-31 03:46:34 +08:00
refactor: 后端包结构重构、去除无用的文件
This commit is contained in:
14
server/internal/devops/domain/entity/machine_monitor.go
Normal file
14
server/internal/devops/domain/entity/machine_monitor.go
Normal file
@@ -0,0 +1,14 @@
|
||||
package entity
|
||||
|
||||
import (
|
||||
"time"
|
||||
)
|
||||
|
||||
type MachineMonitor struct {
|
||||
Id uint64 `json:"id"`
|
||||
MachineId uint64 `json:"machineId"`
|
||||
CpuRate float32 `json:"cpuRate"`
|
||||
MemRate float32 `json:"memRate"`
|
||||
SysLoad string `json:"sysLoad"`
|
||||
CreateTime time.Time `json:"createTime"`
|
||||
}
|
||||
Reference in New Issue
Block a user