10 lines
233 B
Go
Raw Normal View History

2019-04-22 02:59:20 +00:00
package model
// CreateTaskMsg databus msg
type CreateTaskMsg struct {
BizID int64 `json:"business_id"`
RID int64 `json:"rid"`
FlowID int64 `json:"flow_id"`
DispatchLimit int64 `json:"dispatch_limit"`
}