voucher/internal/biz/timeslice/model.go

25 lines
323 B
Go

package timeslice
import (
"time"
)
type Manager struct {
StartTime time.Time
EndTime time.Time
ProductNo string
GoNum int
}
type Process struct {
manager *Manager
taskCount int
}
type Task struct {
CurrentStartTime time.Time
CurrentEndTime time.Time
TaskID int
ProductNo string
}