banner.go 323 B

12345678910111213141516
  1. package model
  2. import (
  3. "go-common/library/time"
  4. )
  5. // Banner banner
  6. type Banner struct {
  7. ID int64 `json:"id"`
  8. Image string `json:"image"`
  9. Link string `json:"link"`
  10. StartAt time.Time `json:"start_at"`
  11. EndAt time.Time `json:"end_at"`
  12. CTime time.Time `json:"-"`
  13. MTime time.Time `json:"-"`
  14. }