summary.go 549 B

12345678910111213
  1. package model
  2. type SummaryUserSeeAds struct {
  3. Id int `json:"id" gorm:"primary_key;"`
  4. Date string `json:"date" gorm:"column:date;"`
  5. Count int `json:"count" gorm:"column:count"`
  6. Pf string `json:"pf" gorm:"column:pf"`
  7. Gid string `json:"gid" gorm:"column:gid"`
  8. SumType1 string `json:"sumType1" gorm:"column:sumType1"`
  9. SumType2 string `json:"sumType2" gorm:"column:sumType2"`
  10. SumType0 string `json:"sumType0" gorm:"column:sumType0"`
  11. CreatedAt XTime `json:"createdAt" gorm:"column:createdAt;type:date;"`
  12. }