You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
726 B

package DataEX
type KafkaData struct {
SystemId string `json:"system_id"`
DatasourceId string `json:"datasource_id"`
DataId string `json:"data_id"`
UserID string `json:"user_id"`
Identity string `json:"identity"`
AccessID string `json:"access_id"`
AccessIP string `json:"access_ip"`
AccessWay string `json:"access_way"`
EventType string `json:"event_type"`
EventName string `json:"event_name"`
EventTime string `json:"event_time"`
EventURI string `json:"event_uri"`
EventSeqNO string `json:"event_seqno"`
CollectTime string `json:"collect_time"`
UserProperty map[string]interface{} `json:"user_property"`
EventProperty map[string]interface{} `json:"event_property"`
}