channel.go 843 B

12345678910111213141516171819202122232425262728293031
  1. package web
  2. import (
  3. "context"
  4. "time"
  5. "go-common/app/interface/main/web-goblin/model/web"
  6. )
  7. const _cardSQL = "SELECT id,title,tag_id,card_type,card_value,recommand_reason,recommand_state,priority FROM channel_card WHERE stime<? AND etime>? AND `check`=2 AND is_delete=0 ORDER BY priority DESC"
  8. // ChCard channel card.
  9. func (d *Dao) ChCard(ctx context.Context, now time.Time) (res map[int64][]*web.ChCard, err error) {
  10. res = map[int64][]*web.ChCard{}
  11. rows, err := d.showDB.Query(ctx, _cardSQL, now, now)
  12. if err != nil {
  13. return
  14. }
  15. defer rows.Close()
  16. for rows.Next() {
  17. c := &web.ChCard{}
  18. if err = rows.Scan(&c.ID, &c.Title, &c.ChannelID, &c.Type, &c.Value, &c.Reason, &c.ReasonType, &c.Pos); err != nil {
  19. return
  20. }
  21. res[c.ChannelID] = append(res[c.ChannelID], c)
  22. }
  23. if err = rows.Err(); err != nil {
  24. return
  25. }
  26. return
  27. }