| 12345678910111213141516171819 |
- package model
- type SummaryUserSeeAds struct {
- Id int `json:"id" gorm:"primary_key;"`
- Date string `json:"date" gorm:"column:date;"`
- Count int `json:"count" gorm:"column:count"`
- Pf string `json:"pf" gorm:"column:pf"`
- Gid string `json:"gid" gorm:"column:gid"`
- SumType1 int `json:"sumType1" gorm:"column:sumType1"`
- SumType2 int `json:"sumType2" gorm:"column:sumType2"`
- SumType0 int `json:"sumType0" gorm:"column:sumType0"`
- TodayCount int `json:"todayCount" gorm:"column:todayCount"`
- TodaySumType1 int `json:"todaySumType1" gorm:"column:todaySumType1"`
- TodaySumType2 int `json:"todaySumType2" gorm:"column:todaySumType2"`
- TodaySumType0 int `json:"todaySumType0" gorm:"column:todaySumType0"`
- CreatedAt XTime `json:"createdAt" gorm:"column:createdAt;type:date;"`
- }
|