mysql.go 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package share
  2. import (
  3. "context"
  4. "fmt"
  5. "time"
  6. shamdl "go-common/app/interface/main/web-goblin/model/share"
  7. xsql "go-common/library/database/sql"
  8. "go-common/library/log"
  9. )
  10. const (
  11. _shaSub = 100
  12. _shasSQL = "SELECT id,mid,day_count,cycle,share_date,ctime,mtime FROM gb_share_%s WHERE mid = ? and cycle = ?"
  13. )
  14. func shaHit(mid int64) string {
  15. return fmt.Sprintf("%02d", mid%_shaSub)
  16. }
  17. // Shares get shares.
  18. func (d *Dao) Shares(c context.Context, mid int64) (res []*shamdl.Share, err error) {
  19. var (
  20. rows *xsql.Rows
  21. )
  22. if rows, err = d.db.Query(c, fmt.Sprintf(_shasSQL, shaHit(mid)), mid, time.Now().Format("200601")); err != nil {
  23. log.Error("Shares d.db.Query(%d) error(%v)", mid, err)
  24. return
  25. }
  26. defer rows.Close()
  27. for rows.Next() {
  28. r := new(shamdl.Share)
  29. if err = rows.Scan(&r.ID, &r.Mid, &r.DayCount, &r.Cycle, &r.ShareDate, &r.Ctime, &r.Mtime); err != nil {
  30. log.Error("Shares:row.Scan() error(%v)", err)
  31. return
  32. }
  33. res = append(res, r)
  34. }
  35. if err = rows.Err(); err != nil {
  36. log.Error("rows.Err() error(%v)", err)
  37. }
  38. return
  39. }