banner.go 758 B

12345678910111213141516171819202122232425
  1. package models
  2. import (
  3. "rdluck_tools/orm"
  4. "time"
  5. )
  6. type Banner struct {
  7. Id int `orm:"column(id);pk"`
  8. ClassifyId int `description:"分类id"`
  9. ImageUrl string `description:"图片路径"`
  10. BannerType int `description:"类型 1:轮播图,2:头部海报"`
  11. CreateTime time.Time `description:"创建时间"`
  12. ModifyTime time.Time `description:"修改时间"`
  13. ClassifyName string `description:"分类名称"`
  14. JumpUrl string `description:"跳转地址"`
  15. }
  16. //获取轮播图列表
  17. func GetHomeBannerList() (items []*Banner, err error) {
  18. sql := ` SELECT * FROM banner WHERE banner_type=1 ORDER BY modify_time DESC `
  19. o := orm.NewOrm()
  20. o.Using("rddp")
  21. _, err = o.Raw(sql).QueryRows(&items)
  22. return
  23. }