mirror of
https://github.com/langhuihui/monibuca.git
synced 2025-10-28 19:02:06 +08:00
17 lines
363 B
Go
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
|
|
}
|