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