type CalTask struct {
Id string `bson:"_id"`
ProcessorId string `bson:"processor_id"`
Key string `bson:"key"`
Data any `bson:"data"`
EvenTime time.Time `bson:"even_time"`
}
type Window struct {
Id string `bson:"_id"`
Type core.WindowType `bson:"type"`
Size int32 `bson:"size"`
Period int32 `bson:"period"`
Gap int32 `bson:"gap"`
}