bi/model/message.go

13 lines
167 B
Go
Raw Normal View History

2022-01-26 16:40:50 +08:00
package model
import "time"
type InputMessage struct {
Topic string
Partition int
Key []byte
Value []byte
Offset int64
Timestamp *time.Time
}