Browse Source

Merge branch 'banner_history'

zwxi 1 year ago
parent
commit
a7f0ff8524
1 changed files with 9 additions and 6 deletions
  1. 9 6
      models/banner_view_history.go

+ 9 - 6
models/banner_view_history.go

@@ -39,12 +39,12 @@ type SourcePv struct {
 }
 
 type BannerHistoryListRespItem struct {
-	ViewHistoryID   uint64    `orm:"column(view_history_id);pk"` // id
-	UserID          uint64    // 用户id
-	Mobile          string    // 手机号
-	Email           string    // 邮箱
-	RealName        string    // 用户实际名称
-	CompanyName     string    // 公司名称
+	ViewHistoryID   uint64 `orm:"column(view_history_id);pk"` // id
+	UserID          uint64 // 用户id
+	Mobile          string // 手机号
+	Email           string // 邮箱
+	RealName        string // 用户实际名称
+	CompanyName     string // 公司名称
 	CreatedTime     string // 创建时间
 	LastUpdatedTime string
 	FirstSource     int // 一级来源 1小程序移动 2小程序pc 3研报官网
@@ -52,6 +52,9 @@ type BannerHistoryListRespItem struct {
 	BannerUrl       string
 	Pv              int
 	SourceList      []*SourcePv
+	StartDate       string
+	EndDate         string
+	Remark          string
 }
 
 type BannerHistoryListResp struct {