You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package task |
|
|
|
import ( |
|
"time" |
|
) |
|
|
|
//AssignConfig 指派配置 |
|
type AssignConfig struct { |
|
ID int64 |
|
Pool int8 |
|
MinDuration int64 |
|
MaxDuration int64 |
|
MIDs map[int64]struct{} |
|
TIDs map[int16]struct{} |
|
UIDs []int64 |
|
AdminID int64 |
|
State int8 |
|
STime time.Time |
|
ETime time.Time |
|
Index int |
|
}
|
|
|