9 lines
208 B
Go
9 lines
208 B
Go
|
package model
|
||
|
|
||
|
type QueueScheduleTaskRequest struct {
|
||
|
ID string `json:"id"`
|
||
|
NatsSubject string `json:"natsSubject"`
|
||
|
Data string `json:"data"`
|
||
|
StartAt int64 `json:"startAt"` // unix
|
||
|
}
|