content.go 773 B

12345678910111213141516171819202122232425262728
  1. package pgc
  2. import "go-common/library/time"
  3. // Content content def.
  4. type Content struct {
  5. ID int64 `json:"id"`
  6. Title string `json:"title"`
  7. Subtitle string `json:"subtitle"`
  8. Desc string `json:"desc"`
  9. Cover string `json:"cover"`
  10. EPID int `json:"epid"`
  11. CID int `json:"cid"`
  12. MenuID int `json:"menu_id"`
  13. SeasonID int `json:"season_id"`
  14. State int `json:"state"`
  15. Valid int `json:"valid"`
  16. PayStatus int `json:"pay_status"`
  17. IsDeleted int `json:"is_deleted"`
  18. AuditTime int `json:"audit_time"`
  19. Ctime time.Time `json:"ctime"`
  20. Mtime time.Time `json:"mtime"`
  21. }
  22. // TableName tv_content
  23. func (c Content) TableName() string {
  24. return "tv_content"
  25. }