TrackingInsightEntity.scala 584 Bytes
Newer Older
wang-jinfeng committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
package mobvista.dmp.clickhouse.tracking

import scala.collection.mutable

/**
  * @package: mobvista.dmp.clickhouse.tracking
  * @author: wangjf
  * @date: 2019-08-15
  * @time: 11:15
  * @email: jinfeng.wang@mobvista.com
  * @phone: 152-1062-7698
  */
case class TrackingInsightEntity(device_id: String, platform: String, country: String, age: Int, gender: Int, install_apps: mutable.WrappedArray[Int],
                                 interest: mutable.WrappedArray[String], offer_id: String, id: String, event_name: String, event_type: String, log_type: Int) extends Serializable