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 { Process *Process CurrentStartTime time.Time CurrentEndTime time.Time TaskID int }