Commit 4a90a6c6 authored by RingEric's avatar RingEric

事件样例类

parent bb36836f
package qm.model
/**
* @ClassName: ActionItem
* @Description: 每条用户行为事件信息
* @Create by: LinYoung
* @Date: 2021/1/26 11:21
*/
case class ActionItem(
ip: String,
deviceId: String,
eventName: String,
eventData: String,
ctime: String
) {
override def toString: String = {
"{ip:"+ip+
",deviceId:"+deviceId+
",eventName:"+eventName+
",ctime:"+ctime+
",eventData:"+eventData+
"}"
}
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment