package entity import "github.com/gogf/gf/v2/os/gtime" type CpsClickLog struct { Id int64 `orm:"id" json:"id"` UserId int64 `orm:"user_id" json:"user_id"` Source string `orm:"source" json:"source"` OuterId string `orm:"outer_id" json:"outer_id"` Scene string `orm:"scene" json:"scene"` PlanId int64 `orm:"plan_id" json:"plan_id"` CategoryCode string `orm:"category_code" json:"category_code"` Deeplink string `orm:"deeplink" json:"deeplink"` Ip string `orm:"ip" json:"ip"` CreatedAt *gtime.Time `orm:"created_at" json:"created_at"` }