mq/app/http/entities/order.go

10 lines
298 B
Go

package entities
type MqMessage struct {
Body map[string]interface{} `json:"body"`
Property map[string]interface{} `json:"property"`
Key string `json:"serial_number"`
SendTime int64 `json:"send_time"`
Topical string `json:"topic"`
}