|
@@ -9,18 +9,19 @@ import (
|
|
|
)
|
|
|
|
|
|
type CygxArticleHistoryRecordNewpv struct {
|
|
|
- Id int `orm:"column(id);pk"`
|
|
|
- ArticleId int
|
|
|
- UserId int
|
|
|
- CreateTime time.Time
|
|
|
- ModifyTime time.Time
|
|
|
- Mobile string `description:"手机号"`
|
|
|
- Email string `description:"邮箱"`
|
|
|
- CompanyId int `description:"公司id"`
|
|
|
- CompanyName string `description:"公司名称"`
|
|
|
- StopTime int `description:"停留时间"`
|
|
|
- OutType int `description:"退出方式,1正常退出,2强制关闭"`
|
|
|
- Source string `description:"来源,MOBILE:手机端,PC:电脑端"`
|
|
|
+ Id int `orm:"column(id);pk"`
|
|
|
+ ArticleId int
|
|
|
+ UserId int
|
|
|
+ CreateTime time.Time
|
|
|
+ ModifyTime time.Time
|
|
|
+ Mobile string `description:"手机号"`
|
|
|
+ Email string `description:"邮箱"`
|
|
|
+ CompanyId int `description:"公司id"`
|
|
|
+ CompanyName string `description:"公司名称"`
|
|
|
+ StopTime int `description:"停留时间"`
|
|
|
+ OutType int `description:"退出方式,1正常退出,2强制关闭"`
|
|
|
+ Source string `description:"来源,MOBILE:手机端,PC:电脑端"`
|
|
|
+ RegisterPlatform int `description:"来源 1小程序,2:网页"`
|
|
|
}
|
|
|
|
|
|
// 添加阅读记录信息
|