analytics.go 404 B

1234567891011121314
  1. package models
  2. import "time"
  3. // WidgetOpenEvent 访客打开客服小窗埋点(每次打开弹窗记一条,用于统计访问次数)
  4. type WidgetOpenEvent struct {
  5. ID uint `json:"id" gorm:"primaryKey"`
  6. VisitorID uint `json:"visitor_id" gorm:"index;not null"`
  7. CreatedAt time.Time `json:"created_at"`
  8. }
  9. func (WidgetOpenEvent) TableName() string {
  10. return "widget_open_events"
  11. }