Files
monibuca/plugin/monitor/pkg/schema-task.go
2024-08-23 14:24:04 +08:00

17 lines
363 B
Go

package monitor
import (
"time"
)
type Task struct {
ID uint `gorm:"primarykey"`
SessionID, TaskID, ParentID uint32
StartTime, EndTime time.Time
OwnerType string
TaskType byte
Description string
Reason string
Level byte
}