biz.go 844 B

12345678910111213141516171819202122232425262728293031323334
  1. package archive
  2. import (
  3. "context"
  4. "time"
  5. model "go-common/app/interface/main/creative/model/archive"
  6. "go-common/library/database/sql"
  7. "go-common/library/log"
  8. )
  9. const (
  10. _bizsByTimeSQL = "SELECT aid,type,ctime FROM archive_biz WHERE mtime >= ? AND mtime < ? AND type = ? ORDER BY mtime"
  11. )
  12. // BIZsByTime list businesses by time and type
  13. func (d *Dao) BIZsByTime(c context.Context, start, end *time.Time, tp int8) (bizs []*model.BIZ, err error) {
  14. var rows *sql.Rows
  15. if rows, err = d.db.Query(c, _bizsByTimeSQL, start, end, tp); err != nil {
  16. log.Error("d.db.Query error(%v)", err)
  17. return
  18. }
  19. defer rows.Close()
  20. bizs = []*model.BIZ{}
  21. for rows.Next() {
  22. var b = new(model.BIZ)
  23. if err = rows.Scan(&b.Aid, &b.Type, &b.Ctime); err != nil {
  24. log.Error("row.Scan error(%v)", err)
  25. return
  26. }
  27. bizs = append(bizs, b)
  28. }
  29. return
  30. }