12345678910111213141516171819202122232425 |
- package entity
- // Code generated by sql2gorm. DO NOT EDIT.
- import (
- "time"
- )
- type LocalTaskLinkStatistic struct {
- StatisticID int64 `gorm:"column:statistic_id;primary_key;AUTO_INCREMENT"` // 主键ID
- LocalID string `gorm:"column:local_id"` // 本地生活任务ID
- TaskID string `gorm:"column:task_id"` // 子任务ID
- PlatformID int64 `gorm:"column:platform_id"` // 平台ID,1-7分别代表小红书、抖音、微博、快手、b站、大众点评、知乎
- VoteCount int64 `gorm:"column:vote_count"` // 点赞量
- CommitCount int64 `gorm:"column:commit_count"` // 评论数
- CollectionCount int64 `gorm:"column:collection_count"` // 收藏数
- ViewCount int64 `gorm:"column:view_count"` // 浏览量
- CreateTime *time.Time `gorm:"column:create_time"` // 创建时间
- OpenID string `gorm:"column:open_id"` // 第三方平台唯一标识符
- SupplierID int64 `gorm:"column:supplier_id;NOT NULL"`
- }
- func (m *LocalTaskLinkStatistic) TableName() string {
- return "local_task_link_statistic"
- }
|