special.go 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. package special
  2. import (
  3. "context"
  4. "time"
  5. "go-common/app/interface/main/app-card/model/card/operate"
  6. "go-common/app/interface/main/app-feed/conf"
  7. "go-common/library/database/sql"
  8. )
  9. const (
  10. _getSQL = "SELECT `id`,`title`,`desc`,`cover`,`scover`,`re_type`,`re_value`,`corner`,`size` FROM special_card"
  11. )
  12. type Dao struct {
  13. db *sql.DB
  14. specialGet *sql.Stmt
  15. }
  16. func New(c *conf.Config) (d *Dao) {
  17. d = &Dao{
  18. db: sql.NewMySQL(c.MySQL.Manager),
  19. }
  20. // prepare
  21. d.specialGet = d.db.Prepared(_getSQL)
  22. return
  23. }
  24. func (d *Dao) Card(c context.Context, now time.Time) (scm map[int64]*operate.Special, err error) {
  25. rows, err := d.specialGet.Query(c)
  26. if err != nil {
  27. return
  28. }
  29. defer rows.Close()
  30. scm = map[int64]*operate.Special{}
  31. for rows.Next() {
  32. sc := &operate.Special{}
  33. if err = rows.Scan(&sc.ID, &sc.Title, &sc.Desc, &sc.Cover, &sc.SingleCover, &sc.ReType, &sc.ReValue, &sc.Badge, &sc.Size); err != nil {
  34. return
  35. }
  36. sc.Change()
  37. scm[sc.ID] = sc
  38. }
  39. return scm, err
  40. }
  41. // Close close memcache resource.
  42. func (d *Dao) Close() {
  43. if d.db != nil {
  44. d.db.Close()
  45. }
  46. }